You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifying the wanted log level on the command line when doing webviz build does not have any effect.
The following command line should set log level to INFO but currently this does not happen:
webviz build ../webviz-subsurface-testdata/webviz_examples/webviz-full-demo.yml --loglevel INFO
Note that fixing this issue will most likely trigger a new need for filtering of log messages from underlying modules since once we're able to set the global log level to INFO or DEBUG, the log will most likely be flooded with messages.
The text was updated successfully, but these errors were encountered:
Some initial experiments indicate that the core issue may be resolved by making sure that something like this gets called before any other logging calls in our jinja2 templates
An easy alternative to how ros does it could perhaps be --log-level accepting a user provided YAML config for logging configuration (if more detailed instructions are needed).
Specifying the wanted log level on the command line when doing
webviz build
does not have any effect.The following command line should set log level to
INFO
but currently this does not happen:Note that fixing this issue will most likely trigger a new need for filtering of log messages from underlying modules since once we're able to set the global log level to
INFO
orDEBUG
, the log will most likely be flooded with messages.The text was updated successfully, but these errors were encountered: