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
I always use the Node debug module as follows:
debug
https://github.com/versatica/mediasoup/blob/v3/lib/Logger.js
It provides a constructor to set a sub-namespce (optional) and 3 methods:
debug()
warn()
:WARN:
error()
:ERROR:
Interested?
The text was updated successfully, but these errors were encountered:
Thanks, will look into it.
Sorry, something went wrong.
No branches or pull requests
I always use the Node
debug
module as follows:https://github.com/versatica/mediasoup/blob/v3/lib/Logger.js
It provides a constructor to set a sub-namespce (optional) and 3 methods:
debug()
: prints to stdout.warn()
: prints to stderr and adds:WARN:
between the "app name" and the sub-namespace.error()
: prints to stderr and adds:ERROR:
between the "app name" and the sub-namespace.Interested?
The text was updated successfully, but these errors were encountered: