Log Level
The log_level option allows you to control the verbosity of the logs. By default, it is set to info.
Valid values are trace, debug, info, warn, error, and off.
Configuration
Itsi.rb
log_level :debugEnvironment Variables
You can also set the ITSI_LOG environment variable to to control this.
If both are set, the configuration takes precedence.
Syntax
ITSI_LOG uses EnvFilter directive syntax.
E.g.
ITSI_LOG=warn # Set global log levelITSI_LOG=info,middleware=debug # Set global log level, and override for all targets starting with middleware::*.ITSI_LOG=warn,middleware::auth_jwt=debug,middleware=info #