@stonyx/logs 1.0.1-beta.2 → 1.0.1-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
2
|
<br>
|
|
3
3
|
<br>
|
|
4
|
-
<img width="560" src="https://github.com/abofs/stonyx-logs/raw/
|
|
4
|
+
<img width="560" src="https://github.com/abofs/stonyx-logs/raw/main/media/logo.png" alt="Stonyx Logs">
|
|
5
5
|
<br>
|
|
6
6
|
<br>
|
|
7
7
|
<br>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
> Simplified logging for node applications
|
|
11
11
|
|
|
12
|
-

|
|
13
13
|
|
|
14
14
|
<br>
|
|
15
15
|
|
|
@@ -89,7 +89,7 @@ const chronicle = new Chronicle({
|
|
|
89
89
|
|
|
90
90
|
chronicle.info('Info: sample application has started');
|
|
91
91
|
```
|
|
92
|
-

|
|
93
93
|
|
|
94
94
|
|
|
95
95
|
Add additional log types extending the default options of "info", "warn", "error" and "debug"
|
|
@@ -105,7 +105,7 @@ chronicle.defineType('query', chronicle.chalk().black.bgGreen);
|
|
|
105
105
|
chronicle.question('What will a fully custom chalk color function look like?');
|
|
106
106
|
await chronicle.query('This is what a custom chalk color setting looks like', true);
|
|
107
107
|
```
|
|
108
|
-

|
|
109
109
|
|
|
110
110
|
## API
|
|
111
111
|
|