Skip to content

Commit

Permalink
v2.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
shirtiny committed Feb 17, 2022
1 parent ce1937f commit a5ca6b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shirtiny/logger",
"version": "2.1.14",
"version": "2.1.15",
"description": "Simple console log with css, write in typescript.",
"types": "./dist/types/main.d.ts",
"main": "./dist/main.es.js",
Expand Down
18 changes: 9 additions & 9 deletions src/model/shLogger.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* @Author: Shirtiny
* @Date: 2021-06-25 10:25:33
* @LastEditTime: 2021-12-11 11:51:37
* @LastEditTime: 2022-02-17 21:47:39
* @Description:
*/

Expand All @@ -12,14 +12,14 @@ import { Logger } from "./logger";
export enum LEVELS {
log = 0,
version = 0,
error = 0,
key = 0,
warn = 1,
interval = 1,
service = 2,
api = 3,
http = 3,
debug = 3,
error = 1,
warn = 2,
key = 3,
interval = 3,
service = 4,
api = 5,
http = 6,
debug = 7,
}

type LogType = {
Expand Down

0 comments on commit a5ca6b8

Please sign in to comment.