@sjts/lib-log 31.0.3 → 31.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Logger.test.js +1 -1
- package/dist/_/Logger.test.d.ts +2 -0
- package/dist/_/Logger.test.d.ts.map +1 -0
- package/dist/_/Logger.test.js +15 -0
- package/dist/_/index.d.ts +2 -0
- package/dist/_/index.d.ts.map +1 -0
- package/dist/_/index.js +1 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
package/dist/Logger.test.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logger.test.d.ts","sourceRoot":"","sources":["../../src/_/Logger.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Logger } from '../Logger';
|
|
2
|
+
const test = () => {
|
|
3
|
+
Logger.startProfiling('Speed Test');
|
|
4
|
+
Logger.info('ABC');
|
|
5
|
+
Logger.startProfiling('Something');
|
|
6
|
+
Logger.info('DEF');
|
|
7
|
+
Logger.debug('GHI');
|
|
8
|
+
Logger.stopProfiling('Something');
|
|
9
|
+
Logger.info('JKL');
|
|
10
|
+
Logger.startProfiling('Something Else');
|
|
11
|
+
Logger.stopProfiling('Something Else');
|
|
12
|
+
Logger.stopProfiling('Speed Test');
|
|
13
|
+
return 100;
|
|
14
|
+
};
|
|
15
|
+
test();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/_/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA"}
|
package/dist/_/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Logger.test.js';
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA"}
|
package/dist/index.js
CHANGED