Skip to content

Commit

Permalink
- export global logger
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyFlasher committed Sep 23, 2023
1 parent 3aaced9 commit 2bf9e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "domwires",
"version": "0.9.126",
"version": "0.9.127",
"description": "Flexible and extensible MVC framework",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/com/domwires/core/Global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Class<T> = new(...args: T[]) => T;

export type Type<T = any> = string | Class<T>;

const logger = new Logger(LogLevel.INFO);
export const logger = new Logger(LogLevel.INFO);

const defaultImplMap: Map<string | Class<any>, Class<any>> = new Map<string | Class<any>, Class<any>>();

Expand Down

0 comments on commit 2bf9e98

Please sign in to comment.