Merge branch 'dillon/51.4-explore-multiple-queues' into development

This commit is contained in:
Dillon Ngo
2024-03-18 12:58:31 +08:00
2 changed files with 8 additions and 1 deletions
@@ -69,7 +69,7 @@ abstract class AbstractControllerLogic
} catch (ErrorException|GeneralExceptions $exception){
if ($exception instanceof JobResourceNotFoundException) {
Log::error(sprintf(
Log::channel('vue_polling')->info(sprintf(
"Uncaught exception '%s' with message '%s' in %s:%d",
get_class($exception),
$exception->getMessage(),
+7
View File
@@ -120,6 +120,13 @@ return [
'driver' => 'errorlog',
'level' => 'debug',
],
'vue_polling' => [
'driver' => 'single',
'path' => storage_path('logs/laravel_vue_plling.log'),
'level' => 'info',
],
],
];