You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd also like to point out that since debug is already used by many of your dependencies, including, but not limited to, connect and express the ability to toggle log levels by module is extremely useful.
Quick summary of all of all dependencies which use debug can be found by inspecting their package.json declarations (snippet uses ggreer/the_silver_searcher):
ag -G package.json '"debug"' node_modules/
The text was updated successfully, but these errors were encountered:
Frankly, this looks interesting, but...
Does it persist exceptions and traces before them to actual log files in order to figure out what bombed during production runs?
Highly recommend logging to STDOUT by default, in keeping with the principles of the 12 factor app
Would a migration from
log4js
to visionmedia/debug be realistic?I'd also like to point out that since
debug
is already used by many of your dependencies, including, but not limited to, connect and express the ability to toggle log levels by module is extremely useful.Quick summary of all of all dependencies which use
debug
can be found by inspecting theirpackage.json
declarations (snippet uses ggreer/the_silver_searcher):ag -G package.json '"debug"' node_modules/
The text was updated successfully, but these errors were encountered: