log verbosity levels are stupid
because when should you use any log level other than
error
,warn
, orinfo
?use severities instead of verbosities
and there is really no need for anything lower, because guess what:
debug
andtrace
andDisplay
andVerbose
andVeryVerbose
and what have you - they’re all just moreinfo
for you
tracing is better than logging
I also imagine visualizing traces live in your CLI could yield a very nice user experience, with a visible progress indicator as to what eg. your compiler is working on right now at a glance, reassuring you that it is not stuck on some
while (true) {}
in constant evaluation