verbose mode
See original GitHub issueI think it would be really useful to have a flag you could turn on when debugging that made leveldown write something like this to stdout:
OPEN "test"
PUT "ÿfooÿhello", "world", "String"
GET "ÿfooÿhello", "world", "String"
GET "ÿfooÿweeee", "Key not found in database [ÿfooÿweeee]", "NotFoundError"
I could monkeypatch to implement this today as a third party module but I wanted feedback on where in the stack something like this could go. I imagine that simple if (verbose)
checks would get inlined by v8 etc
Issue Analytics
- State:
- Created 10 years ago
- Comments:15 (10 by maintainers)
Top Results From Across the Web
Verbose mode
In computing, Verbose mode is an option available in many computer operating systems and programming languages that provides additional details as to what ......
Read more >What is Verbose Mode?
A verbose mode is an option available in many computer operating systems, including Microsoft Windows, macOS, and Linux.
Read more >How to boot your Mac in verbose mode
As its name suggests, the verbose mode is a method of booting up your Mac that, instead of an Apple logo and progress...
Read more >What Is Verbose Mode and How to Boot Your Mac in ...
Verbose Mode is a booting mode on Macintosh computers that replaces the graphical startup screen with a series of command lines.
Read more >Verbose
The verbose option specifies that you want to display detailed processing information on your screen. This is the default. When you run the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Wrote https://github.com/vweevers/debugdown in 30 mins. Short of docs, usage is:
Here it is in action on the test suite of
leveldown
withDEBUG=debugdown
:this is a perfect user land thing. and could be done with hooks quite easily. new module!