We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
When using the log module with Deno Deploy, the output is not "native" in the dashboard:
log
Describe the solution you'd like
Deno Deploy provides a clean UI for logs outputed with the debug, info, warn, error methods, what about using those by default in ConsoleHandler?
debug
info
warn
error
ConsoleHandler
Describe alternatives you've considered
The ConsoleHandler can be useful but in a terminal, what about renaming it TerminalHandler and creating a new ConsoleHandler?
TerminalHandler
console.log
console.*
The only drawback I can see is the missing critical method in the native console API.
critical
console
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
When using the
log
module with Deno Deploy, the output is not "native" in the dashboard:Describe the solution you'd like
Deno Deploy provides a clean UI for logs outputed with the
debug
,info
,warn
,error
methods, what about using those by default inConsoleHandler
?Describe alternatives you've considered
The
ConsoleHandler
can be useful but in a terminal, what about renaming itTerminalHandler
and creating a newConsoleHandler
?TerminalHandler
: always outputs withconsole.log
and formats data by itself, like the currentConsoleHandler
.ConsoleHandler
: outputs with the appropriateconsole.*
methods, lets Deno Deploy handle the formatting.The only drawback I can see is the missing
critical
method in the nativeconsole
API.The text was updated successfully, but these errors were encountered: