Small change in debug logging.

This commit is contained in:
James Cole
2023-09-23 16:29:21 +02:00
parent f66dd259f0
commit e81565d36a
2 changed files with 2 additions and 4 deletions

View File

@@ -232,7 +232,6 @@ class DebugController extends Controller
return [ return [
'tz' => env('TZ'), 'tz' => env('TZ'),
'debug' => var_export(config('app.debug'), true), 'debug' => var_export(config('app.debug'), true),
'log_channel' => env('LOG_CHANNEL'),
'audit_log_channel' => envNonEmpty('AUDIT_LOG_CHANNEL', '(empty)'), 'audit_log_channel' => envNonEmpty('AUDIT_LOG_CHANNEL', '(empty)'),
'default_language' => (string)config('firefly.default_language'), 'default_language' => (string)config('firefly.default_language'),
'default_locale' => (string)config('firefly.default_locale'), 'default_locale' => (string)config('firefly.default_locale'),

View File

@@ -12,8 +12,7 @@
{# Firefly III version #} {# Firefly III version #}
<tr> <tr>
<td>Firefly III</td> <td>Firefly III</td>
<td>v{{ FF_VERSION }} / v{{ config('firefly.api_version') }} / {{ system.db_version }} <td>v{{ FF_VERSION }} / v{{ config('firefly.api_version') }} / {{ system.db_version }} (exp. {{ config('firefly.db_version') }})
(exp. {{ config('firefly.db_version') }})
</td> </td>
</tr> </tr>
{# PHP version + settings #} {# PHP version + settings #}
@@ -73,7 +72,7 @@
</tr> </tr>
<tr> <tr>
<td>Logging</td> <td>Logging</td>
<td>{{ config('logging.level') }}, {{ app.log_channel }} / {{ app.audit_log_channel }}</td> <td>{{ config('logging.level') }}, {{ config('logging.default') }} / {{ app.audit_log_channel }}</td>
</tr> </tr>
<tr> <tr>
<td>Cache driver</td> <td>Cache driver</td>