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.
I want to get log from svrx, like webpack's log.
Describe the solution you'd like
Maybe an event to listen to logs.
The text was updated successfully, but these errors were encountered:
Add logger events
logger
svrx().on('logger', payload=>{ })
Param
By default, the logger will be output on the terminal. You can use evt.prevent=true to stop this behavior
evt.prevent=true
svrx().on('logger', (payload, evt)=>{ evt.prevent = true; })
Sorry, something went wrong.
leeluolee
No branches or pull requests
Is your feature request related to a problem? Please describe.
I want to get log from svrx, like webpack's log.
Describe the solution you'd like
Maybe an event to listen to logs.
The text was updated successfully, but these errors were encountered: