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
logger for all javascript and typescript Buffer services
3
+
4
+
5
+
## Log verbosity levels
6
+
7
+
If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. Here a list with some use case:
8
+
9
+
| Levels | Use case | Examples |
10
+
|:-:|---|---|
11
+
| DEBUG | Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value. ||
12
+
| INFO | Informational messages ||
13
+
| NOTICE | Logs that track the general flow of the application. This is the default level ||
14
+
| WARNING | Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. ||
15
+
| ERROR | Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a failure in the current activity, not an application-wide failure. ||
16
+
| CRITICAL | Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention. ||
0 commit comments