1 Star 0 Fork 68

hu/xnote

forked from xupingmao/xnote 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sentinel.py 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
xupingmao 提交于 2024-04-20 23:28 . sentinel日志增加当前时间
# encoding=utf-8
"""哨兵进程
错误码说明
错误码 | 说明
------| -------
0 | 正常退出
1 | 异常退出,一般是程序错误
https://blog.csdn.net/halfclear/article/details/72783900
"""
import sys
import os
import time
def get_current_time(format='%Y-%m-%d %H:%M:%S'):
return time.strftime(format)
def print_log(*args):
print(get_current_time(), *args)
def main():
args = sys.argv[1:]
args.insert(0, sys.executable)
cmd = " ".join(args)
print_log("command:", cmd)
while True:
# exit_code = subprocess.call(args, shell = True)
exit_code = os.system(cmd)
print_log("exit_code:", exit_code)
# Mac返回 52480
if exit_code in (205, 52480):
print_log("restart ...")
print_log("-" * 50)
print_log("-" * 50)
else:
return
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hujinbao/xnote.git
git@gitee.com:hujinbao/xnote.git
hujinbao
xnote
xnote
master

搜索帮助