mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改系统日志
This commit is contained in:
parent
c630fd4274
commit
31aca2997b
@ -51,6 +51,7 @@ class Queue extends Controller
|
|||||||
try {
|
try {
|
||||||
$message = nl2br($this->app->console->call('xadmin:queue', ['stop'])->fetch());
|
$message = nl2br($this->app->console->call('xadmin:queue', ['stop'])->fetch());
|
||||||
if (stripos($message, 'sent end signal to process')) {
|
if (stripos($message, 'sent end signal to process')) {
|
||||||
|
sysoplog('系统运维管理', '尝试停止后台服务主进程');
|
||||||
$this->success('停止后台服务主进程成功!');
|
$this->success('停止后台服务主进程成功!');
|
||||||
} elseif (stripos($message, 'processes to stop')) {
|
} elseif (stripos($message, 'processes to stop')) {
|
||||||
$this->success('没有找到需要停止的进程!');
|
$this->success('没有找到需要停止的进程!');
|
||||||
@ -73,6 +74,7 @@ class Queue extends Controller
|
|||||||
try {
|
try {
|
||||||
$message = nl2br($this->app->console->call('xadmin:queue', ['start'])->fetch());
|
$message = nl2br($this->app->console->call('xadmin:queue', ['start'])->fetch());
|
||||||
if (stripos($message, 'daemons started successfully for pid')) {
|
if (stripos($message, 'daemons started successfully for pid')) {
|
||||||
|
sysoplog('系统运维管理', '尝试启动后台服务主进程');
|
||||||
$this->success('后台服务主进程启动成功!');
|
$this->success('后台服务主进程启动成功!');
|
||||||
} elseif (stripos($message, 'daemons already exist for pid')) {
|
} elseif (stripos($message, 'daemons already exist for pid')) {
|
||||||
$this->success('后台服务主进程已经存在!');
|
$this->success('后台服务主进程已经存在!');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user