Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mafintosh/vizbug
A context aware debug logger
https://github.com/mafintosh/vizbug
Last synced: 22 days ago
JSON representation
A context aware debug logger
- Host: GitHub
- URL: https://github.com/mafintosh/vizbug
- Owner: mafintosh
- License: mit
- Created: 2019-09-25T10:09:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-25T10:12:04.000Z (about 5 years ago)
- Last Synced: 2024-05-16T15:20:32.235Z (6 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 41
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vizbug
A debug module that helps capture the debug context, plus object tracing information to
help you better vizualise debug output```
npm install vizbug
```## Usage
Consider the following example
``` js
class Storage {
constructor () {
this.debug = vizbug()
this.debug('new instance')
}write (data, cb) {
this.debug('writing data to storage %b', data)
setImmediate(cb)
}
}class DataStructure {
constructor () {
this.debug = vizbug()
this.debug('new instance')
this.storage = new Storage()
}addData (data, cb) {
this.debug('adding data to data structure %b', data)
setImmediate(() =>{
this.storage.write(data, cb)
})
}
}const d = new DataStructure()
d.addData(Buffer.alloc(1000), function () {
console.log('data added')
})
```Running this with vizbug enabled produces the following debug output:
```
{"topic":"DataStructure","message":"new instance","filename":"/vizbug/example.js","line":18,"id":1,"context":1,"tracing":[],"date":"2019-09-25T09:39:13.803Z"}
{"topic":"Storage","message":"new instance","filename":"/vizbug/example.js","line":6,"id":2,"context":2,"tracing":[],"date":"2019-09-25T09:39:13.805Z"}
{"topic":"DataStructure","message":"adding data to data structure <0x00000000... (1000 b)>","filename":"/vizbug/example.js","line":23,"id":3,"context":1,"tracing":[1],"date":"2019-09-25T09:39:13.806Z"}
{"topic":"Storage","message":"writing data to storage <0x00000000... (1000 b)>","filename":"/vizbug/example.js","line":10,"id":4,"context":2,"tracing":[1],"date":"2019-09-25T09:39:13.808Z"}```
For each object created a context integer helps you group which debug statements
are related to each context.In addition any object passed to vizbug is added to an internal tracing map. This tracing map
help you figure out how contexts relate to each other. For example in our above gist, the same data
is passed down from the data structure to the storage abstraction. We can see that in the above output
as both tracing arrays share the same tracing id.Using the tracing information we can infer the coupling between contexts when debugging which can help
us find issues.## API
#### `log = vizbug([topic])`
Create a new log function. Per default this function is a noop unless the `VIZBUG` env var has been set.
If you set `VIZBUG=true` or `VIZBUG=stdout`, the debug logs will be printed to stdout.
If you set `VIZBUG=stderr` it will be printed to stderr and finally `VIZBUG=filename` will store the debug
logs as newline delimited JSON in that file.Optionally pass a debug topic. If you don't pass a bug it will be inferred based
on the class or function name of the callee.#### `vizbug.enabled`
Boolean telling you if the vizbug debugger is enabled.
#### `log(message, ...traces)`
Log a debug message. Will print a JSON message containing
* The log message
* A context id
* The filename and line number this was called from
* A an array of trace ids for each of the trace objects you pass
* A date stamp.You can add format options to your message to print traces.
* `%b` will insert a buffer digest
* `%o` will JSON.stringify a trace.
* `%s` will print a string
* `%d`, `%i` will print a number.## License
MIT