'error'
'debug'
'warn'
'info'
Every log carries one, and a module says how far down that list it wants to see: a module with devLevel: 'info' shows 'error', 'warn' and 'info' logs and stops before 'debug'.
devLevel: 'info'
Errors are output whatever the module allows, so a module set to 'error' reports its errors and nothing else. Use LoxerConfig.disabled or LoxerConfig.disabledInProductionMode to switch logging off altogether.
The level of a log
How severe a log is, from
'error'to'debug':'error''warn''info''debug'Every log carries one, and a module says how far down that list it wants to see: a module with
devLevel: 'info'shows'error','warn'and'info'logs and stops before'debug'.Errors are output whatever the module allows, so a module set to
'error'reports its errors and nothing else. Use LoxerConfig.disabled or LoxerConfig.disabledInProductionMode to switch logging off altogether.