@viplance/nestjs-logger 0.3.0 → 0.3.1
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 +3 -2
- package/package.json +1 -1
- package/public/styles/index.css +5 -0
package/README.md
CHANGED
|
@@ -51,14 +51,15 @@ Connect the database to store logs.
|
|
|
51
51
|
|
|
52
52
|
this.logService.log('Some log information');
|
|
53
53
|
```
|
|
54
|
-
|
|
54
|
+
<br />
|
|
55
55
|
|
|
56
56
|
### Additional information
|
|
57
57
|
|
|
58
58
|
- `path`, `key` and `database` properties are optional.
|
|
59
59
|
- The logs could be available at `your_application_url`/`path`?key=`key`
|
|
60
60
|
- The log API could be available at `your_application_url`/`path`/api?key=`key`
|
|
61
|
-
-By default the logs will be stored in memory and deleted when the application stops.<br />
|
|
61
|
+
- By default the logs will be stored in memory and deleted when the application stops.<br />
|
|
62
|
+
<br />
|
|
62
63
|
|
|
63
64
|
### The LogService methods:
|
|
64
65
|
- log()
|
package/package.json
CHANGED