We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716b50a commit c70f069Copy full SHA for c70f069
README.md
@@ -1,6 +1,16 @@
1
# js-bufflog
2
logger for all javascript and typescript Buffer services
3
4
+# Usage
5
+```js
6
+import bufflog from "BuffLog";
7
+
8
+bufflog.debug('hello critical', {"some":"stuff"});
9
+bufflog.info('hello info');
10
+bufflog.notice('hello notice with context', {"foo":"bar"});
11
+bufflog.error('hello error');
12
+bufflog.critical('hello critical');
13
+```
14
15
## Log verbosity levels
16
0 commit comments