We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
notThis
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Usecase:
set DEBUG=knex:query && node file.js
const DebugModule = require('debug') //temporary disable logging let x = DebugModule.disable() DebugModule.enable(x+ ',-knex:query'); // almost OK: knex:query,-knex:query //and try re-enable x = DebugModule.disable() DebugModule.enable(x+ ',knex:query') // Don't work: knex:query,knex:query,-knex:query
I think that namespaces with identic name should be filtered before adding. (eg knex:*,-knex:*, not knex:query,-knex:*)
knex:*,-knex:*
knex:query,-knex:*
This is needed for temporary blocking and unlock namespaces eg by REST API.
The text was updated successfully, but these errors were encountered:
This is a known issue and is listed to be fixed via #425.
Going to close as a duplicate.
Sorry, something went wrong.
No branches or pull requests
Usecase:
set DEBUG=knex:query && node file.js
I think that namespaces with identic name should be filtered before adding. (eg
knex:*,-knex:*
, notknex:query,-knex:*
)This is needed for temporary blocking and unlock namespaces eg by REST API.
The text was updated successfully, but these errors were encountered: