@athenna/logger 3.0.8 → 3.0.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/logger",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
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>",
package/src/index.d.ts CHANGED
@@ -8,6 +8,7 @@
8
8
  */
9
9
 
10
10
  import { Facade } from '@athenna/ioc'
11
+ import { Options } from '@athenna/common'
11
12
 
12
13
  export const Log: typeof Facade & Logger
13
14
 
@@ -465,14 +466,13 @@ export class DriverFactory {
465
466
  static fabricate(channelName: string, runtimeConfig?: any): any
466
467
 
467
468
  /**
468
- * Fabricate a new instance of a driver without
469
+ * Fabricate a new instance of a driver with vanilla
469
470
  * configurations.
470
471
  *
471
- * @param {string} driverName
472
- * @param {any} runtimeConfig
472
+ * @param {any} configs
473
473
  * @return {any}
474
474
  */
475
- static fabricateOnly(driverName: string, runtimeConfig?: any): any
475
+ static fabricateVanilla(configs?: any): any
476
476
 
477
477
  /**
478
478
  * Creates a new driver implementation.