N°4261 - Log in db: change default configuration.

As since the latest changes by Pir, the default value is handled directly in the class.
This commit is contained in:
bruno-ds
2021-10-21 10:11:26 +02:00
parent 0e14be8b15
commit d03718681f

View File

@@ -107,7 +107,7 @@ class Config
protected $m_aSettings = [
'log_level_min' => [
'type' => 'array',
'description' => 'Optional min log level per channel',
'description' => 'Optional min log level, per channel.',
'default' => '',
'value' => '',
'source_of_value' => '',
@@ -115,9 +115,9 @@ class Config
],
'log_level_min.write_in_db' => [
'type' => 'array',
'description' => 'Additional configuration that enable "in DB" logs for Exception on compatible code.',
'default' => [ 'Exception' => 'Error', ],
'value' => [ 'Exception' => 'Error', ],
'description' => 'Optional min log level IN DB, per channel.',
'default' => '',
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
],