feat(logging): migrate remaining files to app channel — all Log:: calls now use domain channels

This commit is contained in:
F4ilji
2026-07-05 23:32:01 +05:00
parent 6bc1b3e921
commit 769b2ff342
17 changed files with 50 additions and 50 deletions
@@ -47,7 +47,7 @@ class SearchStaticFilesAction
return app(PaginateSearchResultsTask::class)->run($results, $page, self::PER_PAGE, $categories);
} catch (\Exception $e) {
Log::error('Search error: ' . $e->getMessage());
Log::channel('app')->error('Search error: ' . $e->getMessage());
return [
'data' => [],
'meta' => [
@@ -77,7 +77,7 @@ class SearchStaticFilesAction
return null;
} catch (\Exception $e) {
Log::error('Failed to get H1: ' . $e->getMessage());
Log::channel('app')->error('Failed to get H1: ' . $e->getMessage());
return null;
}
}