Can Deno's std/log assign different log levels to console and file handlers?
I am building a Deno application that uses the standard logging module (std/log) to output diagnostic information. I want the console to show only warnings and errors so that informational messages do not create noise during development, while still retaining a complete log file that records every level, including debug and info, for later analysis. The appl