raising default verbosity level for debug builds #2698
-
When debugging (especially unexpectedly) i often wish i had cranked up the logging verbosity beforehand. Line 20 in 9f8df05 to let mut args = Args {
#[cfg(debug_assertions)]
verbosity: 1,
..Args::default()
}; Any feelings regarding this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The debug logs even at level 1 are pretty verbose. I prefer that verbosity is specified explicitly. Also, that patch would make it impossible to run a debug build without verbose logging. Instead this can be solved with a shell alias: alias checkhx='path/to/helix/target/debug/hx -v' |
Beta Was this translation helpful? Give feedback.
The debug logs even at level 1 are pretty verbose. I prefer that verbosity is specified explicitly. Also, that patch would make it impossible to run a debug build without verbose logging.
Instead this can be solved with a shell alias: