diff --git a/.run/Reload Zhamao Server.run.xml b/.run/Reload Zhamao Server.run.xml deleted file mode 100644 index 06f86990..00000000 --- a/.run/Reload Zhamao Server.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - \ No newline at end of file diff --git a/.run/Run Zhamao Server.run.xml b/.run/Run Zhamao Server.run.xml deleted file mode 100644 index a78a357a..00000000 --- a/.run/Run Zhamao Server.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - \ No newline at end of file diff --git a/.run/Run watcher.run.xml b/.run/Run watcher.run.xml deleted file mode 100644 index eb9c1687..00000000 --- a/.run/Run watcher.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - \ No newline at end of file diff --git a/.run/Stop Zhamao Server.run.xml b/.run/Stop Zhamao Server.run.xml deleted file mode 100644 index 00a55197..00000000 --- a/.run/Stop Zhamao Server.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - \ No newline at end of file diff --git a/config/logging.php b/config/logging.php deleted file mode 100644 index de0602d3..00000000 --- a/config/logging.php +++ /dev/null @@ -1,28 +0,0 @@ - LogLevel::INFO, - // logger自定义回调 - 'logger' => static function (string $prefix = null): LoggerInterface { - if ($prefix) { - $prefix = strtoupper($prefix); - } else { - // 在 Master 中,worker_id 将不存在 - $prefix = app()->has('worker_id') ? '#' . app('worker_id') : 'MST'; - } - - $logger = new ConsoleLogger(config('logging.level')); - $logger::$format = "[%date%] [%level%] [{$prefix}] %body%"; - $logger::$date_format = 'Y-m-d H:i:s'; - // 如果你喜欢旧版的日志格式,请取消下行注释 -// $logger::$date_format = 'm-d H:i:s'; - return $logger; - }, -];