增加异常trace记录

This commit is contained in:
邹景立 2022-10-18 13:17:37 +08:00
parent 28818bc8e1
commit 3a0f5b1953
6 changed files with 10 additions and 2 deletions

View File

@ -56,8 +56,7 @@ class Module extends Controller
public function change()
{
$data = $this->_vali(['name.require' => '模块名称不能为空!']);
$online = ModuleService::online();
$locals = ModuleService::getModules();
[$online, $locals] = [ModuleService::online(), ModuleService::getModules()];
if (isset($online[$data['name']])) {
$this->module = $online[$data['name']];
$this->current = $locals[$data['name']] ?? [];

View File

@ -78,6 +78,7 @@ class Oplog extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (Exception $exception) {
trace_file($exception);
$this->error("日志清理失败,{$exception->getMessage()}");
}
}

View File

@ -91,6 +91,7 @@ class Queue extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
}
}

View File

@ -48,6 +48,7 @@ class Queue extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
}
}
@ -71,6 +72,7 @@ class Queue extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
}
}

View File

@ -44,6 +44,7 @@ class System extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
} else {
$this->error('只有超级管理员才能操作!');
@ -64,6 +65,7 @@ class System extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
} else {
$this->error('只有超级管理员才能操作!');
@ -131,6 +133,7 @@ class System extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
} else {
$this->error('只有超级管理员才能操作!');

View File

@ -252,6 +252,7 @@ class Upload extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
trace_file($exception);
$this->error($exception->getMessage());
}
}
@ -298,6 +299,7 @@ class Upload extends Controller
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
trace_file($exception);
$this->error(lang($exception->getMessage()));
}
}