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
{{ message }}
This repository was archived by the owner on Aug 18, 2022. It is now read-only.
Currently all output is done via pkg/console.go which supports the following message levels, the levels are mapped to colours
Error - red text
Warning - yellow text
Info - blue text
Success - green text
Debug - magenta text
The only one of these which is controllable is debug, which will only be output if the global --debug flag is passed to rover
We could replace --debug with a --log-level flag and map that level to the existing 5 levels or do we want to step back and examine logging & output in more depth
Currently all output is done via pkg/console.go which supports the following message levels, the levels are mapped to colours
The only one of these which is controllable is debug, which will only be output if the global
--debugflag is passed to roverWe could replace --debug with a --log-level flag and map that level to the existing 5 levels or do we want to step back and examine logging & output in more depth
Thoughts / ideas: