diff --git a/package.json b/package.json index 24b2b33..77fa43d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@secjs/logger", - "version": "1.2.4", + "version": "1.2.5", "description": "", "license": "MIT", "author": "João Lenon", diff --git a/src/utils/global.ts b/src/utils/global.ts index 9bcc768..adbfcde 100644 --- a/src/utils/global.ts +++ b/src/utils/global.ts @@ -1,3 +1,4 @@ +import { Log as LogInstance } from '../Log' import { DriverContract } from '../Contracts/DriverContract' import { FormatterContract } from '../Contracts/FormatterContract' @@ -27,4 +28,4 @@ declare global { const _global = global as any -_global.Log = Log +_global.Log = LogInstance