Skip to content

Commit

Permalink
change log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Shirtiny committed Apr 11, 2023
1 parent bd3ce49 commit 86630fe
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions src/model/shLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,29 @@ const read = (exec: (reader: FileReader) => void): Promise<any> => {
};

export enum LEVELS {
log = 0,
trace = 0,
version = 0,
repo = 0,
img = 0,
error = 1,
warn = 2,
error = 0,

warn = 1,
interval = 1,

group = 2,
img = 2,
log = 2,

key = 3,
interval = 3,
group = 4,

service = 4,
doms = 5,

api = 5,
component = 5,

http = 6,
component = 6,
doms = 6,

debug = 7,
trace = 7,
timing = 7,
}

Expand Down

0 comments on commit 86630fe

Please sign in to comment.