@athenna/logger 3.1.2 → 3.1.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.
@@ -28,6 +28,11 @@ export declare const VANILLA_CHANNELS: {
28
28
  formatter: string;
29
29
  driver: string;
30
30
  };
31
+ request: {
32
+ level: string;
33
+ formatter: string;
34
+ driver: string;
35
+ };
31
36
  exception: {
32
37
  level: string;
33
38
  formatter: string;
@@ -28,6 +28,11 @@ export const VANILLA_CHANNELS = {
28
28
  formatter: 'cli',
29
29
  driver: 'console',
30
30
  },
31
+ request: {
32
+ level: 'trace',
33
+ formatter: 'request',
34
+ driver: 'console',
35
+ },
31
36
  exception: {
32
37
  level: 'trace',
33
38
  formatter: 'none',
@@ -88,7 +88,7 @@ export class Logger {
88
88
  * channels that are already defined in the main instance.
89
89
  */
90
90
  standalone(...configs) {
91
- return Logger.standalone(configs);
91
+ return Logger.standalone(...configs);
92
92
  }
93
93
  /**
94
94
  * Creates a log of type trace in channel.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/logger",
3
- "version": "3.1.2",
3
+ "version": "3.1.4",
4
4
  "description": "The Athenna logging solution. Log in stdout, files and buckets.",
5
5
  "license": "MIT",
6
6
  "author": "João Lenon <lenon@athenna.io>",