Skip to content

Commit 9afccff

Browse files
committed
chore(npm): update dependencies
1 parent ccb67a5 commit 9afccff

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@athenna/logger",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "The Athenna logging solution. Log in stdout, files and buckets.",
55
"license": "MIT",
66
"author": "João Lenon <lenon@athenna.io>",

src/logger/Logger.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
* file that was distributed with this source code.
88
*/
99

10-
import { Color } from '@athenna/common'
1110
import { Config } from '@athenna/config'
1211
import { Driver } from '#src/drivers/Driver'
12+
import { Color, Macroable } from '@athenna/common'
1313
import { DriverFactory } from '#src/factories/DriverFactory'
1414
import { VANILLA_CHANNELS } from '#src/constants/VanillaChannels'
1515

16-
export class Logger {
16+
export class Logger extends Macroable {
1717
/**
1818
* The drivers responsible for transporting the logs.
1919
*/
@@ -25,6 +25,7 @@ export class Logger {
2525
private runtimeConfigs = {}
2626

2727
public constructor() {
28+
super()
2829
this.channelOrVanilla(Config.get('logging.default'))
2930
}
3031

0 commit comments

Comments
 (0)