ng2-logger 13.1.21 → 13.1.22
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/README.md +192 -192
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2020/lib/backend-logging.mjs +93 -93
- package/browser/esm2020/lib/display.mjs +96 -96
- package/browser/esm2020/lib/index.mjs +6 -6
- package/browser/esm2020/lib/level.mjs +32 -32
- package/browser/esm2020/lib/log.mjs +160 -160
- package/browser/esm2020/lib/logger.mjs +236 -236
- package/browser/esm2020/ng2-logger.mjs +4 -4
- package/browser/esm2020/public-api.mjs +1 -1
- package/browser/fesm2015/ng2-logger.mjs +514 -514
- package/browser/fesm2020/ng2-logger.mjs +514 -514
- package/browser/lib/backend-logging.d.ts +3 -3
- package/browser/lib/display.d.ts +3 -3
- package/browser/lib/index.d.ts +3 -3
- package/browser/lib/level.d.ts +20 -20
- package/browser/lib/log.d.ts +24 -24
- package/browser/lib/logger.d.ts +80 -80
- package/browser/ng2-logger.d.ts +4 -4
- package/client/README.md +24 -24
- package/client/esm2020/lib/backend-logging.mjs +93 -93
- package/client/esm2020/lib/display.mjs +96 -96
- package/client/esm2020/lib/index.mjs +6 -6
- package/client/esm2020/lib/level.mjs +32 -32
- package/client/esm2020/lib/log.mjs +160 -160
- package/client/esm2020/lib/logger.mjs +236 -236
- package/client/esm2020/ng2-logger.mjs +4 -4
- package/client/esm2020/public-api.mjs +1 -1
- package/client/fesm2015/ng2-logger.mjs +514 -514
- package/client/fesm2020/ng2-logger.mjs +514 -514
- package/client/lib/backend-logging.d.ts +3 -3
- package/client/lib/display.d.ts +3 -3
- package/client/lib/index.d.ts +3 -3
- package/client/lib/level.d.ts +20 -20
- package/client/lib/log.d.ts +24 -24
- package/client/lib/logger.d.ts +80 -80
- package/client/ng2-logger.d.ts +4 -4
- package/client/package.json +6 -6
- package/index.d.ts +1 -1
- package/lib/backend-logging.d.ts +4 -4
- package/lib/display.d.ts +4 -4
- package/lib/index.d.ts +4 -4
- package/lib/level.d.ts +21 -21
- package/lib/log.d.ts +25 -25
- package/lib/logger.d.ts +81 -81
- package/package.json +3 -3
- package/package.json_devDependencies.json +184 -184
- package/package.json_tnp.json5 +51 -51
- package/tmp-environment.json +9 -9
- package/websql/README.md +24 -24
- package/websql/esm2020/lib/backend-logging.mjs +93 -93
- package/websql/esm2020/lib/display.mjs +96 -96
- package/websql/esm2020/lib/index.mjs +6 -6
- package/websql/esm2020/lib/level.mjs +32 -32
- package/websql/esm2020/lib/log.mjs +160 -160
- package/websql/esm2020/lib/logger.mjs +236 -236
- package/websql/esm2020/ng2-logger.mjs +4 -4
- package/websql/esm2020/public-api.mjs +1 -1
- package/websql/fesm2015/ng2-logger.mjs +514 -514
- package/websql/fesm2020/ng2-logger.mjs +514 -514
- package/websql/lib/backend-logging.d.ts +3 -3
- package/websql/lib/display.d.ts +3 -3
- package/websql/lib/index.d.ts +3 -3
- package/websql/lib/level.d.ts +20 -20
- package/websql/lib/log.d.ts +24 -24
- package/websql/lib/logger.d.ts +80 -80
- package/websql/ng2-logger.d.ts +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import { Level } from './level';
|
|
3
|
-
export declare function consoleLog(data: string, level: Level): void;
|
|
4
|
-
export declare function displayParams(params: any[], level: Level): void;
|
|
2
|
+
import { Level } from './level';
|
|
3
|
+
export declare function consoleLog(data: string, level: Level): void;
|
|
4
|
+
export declare function displayParams(params: any[], level: Level): void;
|
|
5
5
|
export declare function istartedInVscode(): void;
|
package/browser/lib/display.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import { Level } from './level';
|
|
3
|
-
export declare class Display {
|
|
4
|
-
static msg(message: string | any, params: any[], moduleName: string, moduleColor: string, level: Level, moduleWidth: number | undefined, isProductionMode: boolean): void;
|
|
2
|
+
import { Level } from './level';
|
|
3
|
+
export declare class Display {
|
|
4
|
+
static msg(message: string | any, params: any[], moduleName: string, moduleColor: string, level: Level, moduleWidth: number | undefined, isProductionMode: boolean): void;
|
|
5
5
|
}
|
package/browser/lib/index.d.ts
CHANGED
package/browser/lib/level.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
export declare enum Level {
|
|
3
|
-
DATA = 0,
|
|
4
|
-
INFO = 1,
|
|
5
|
-
WARN = 2,
|
|
6
|
-
ERROR = 3,
|
|
7
|
-
SUCCESS = 4,
|
|
8
|
-
TASK_STARTED = 5,
|
|
9
|
-
TASK_DONE = 6,
|
|
10
|
-
__NOTHING = 7
|
|
11
|
-
}
|
|
12
|
-
export declare const LevelKey: {
|
|
13
|
-
0: string;
|
|
14
|
-
1: string;
|
|
15
|
-
2: string;
|
|
16
|
-
3: string;
|
|
17
|
-
4: string;
|
|
18
|
-
5: string;
|
|
19
|
-
6: string;
|
|
20
|
-
7: string;
|
|
21
|
-
};
|
|
2
|
+
export declare enum Level {
|
|
3
|
+
DATA = 0,
|
|
4
|
+
INFO = 1,
|
|
5
|
+
WARN = 2,
|
|
6
|
+
ERROR = 3,
|
|
7
|
+
SUCCESS = 4,
|
|
8
|
+
TASK_STARTED = 5,
|
|
9
|
+
TASK_DONE = 6,
|
|
10
|
+
__NOTHING = 7
|
|
11
|
+
}
|
|
12
|
+
export declare const LevelKey: {
|
|
13
|
+
0: string;
|
|
14
|
+
1: string;
|
|
15
|
+
2: string;
|
|
16
|
+
3: string;
|
|
17
|
+
4: string;
|
|
18
|
+
5: string;
|
|
19
|
+
6: string;
|
|
20
|
+
7: string;
|
|
21
|
+
};
|
|
22
22
|
export declare const LevelOrder: string[];
|
package/browser/lib/log.d.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import { Logger } from './logger';
|
|
3
|
-
import { Level } from './level';
|
|
4
|
-
export declare class Log {
|
|
5
|
-
private constructor();
|
|
6
|
-
private static get instance();
|
|
7
|
-
static Logger: (typeof Logger);
|
|
8
|
-
static create(name: string, ...level: Level[]): Logger;
|
|
9
|
-
private static readonly consolelogfn;
|
|
10
|
-
static disableLogs(level?: Level): void;
|
|
11
|
-
static enableLogs(): void;
|
|
12
|
-
private _logOnly;
|
|
13
|
-
private _logModules;
|
|
14
|
-
private isDevelopmentMode;
|
|
15
|
-
private modeIsSet;
|
|
16
|
-
private fixedWidth;
|
|
17
|
-
private instances;
|
|
18
|
-
private levels;
|
|
19
|
-
private modules;
|
|
20
|
-
setProductionMode(): void;
|
|
21
|
-
onlyModules(...modules: (string | RegExp)[]): void;
|
|
22
|
-
onlyLevel(...level: Level[]): void;
|
|
23
|
-
private create;
|
|
24
|
-
private isMutedModule;
|
|
25
|
-
private muteAllOtherModules;
|
|
2
|
+
import { Logger } from './logger';
|
|
3
|
+
import { Level } from './level';
|
|
4
|
+
export declare class Log {
|
|
5
|
+
private constructor();
|
|
6
|
+
private static get instance();
|
|
7
|
+
static Logger: (typeof Logger);
|
|
8
|
+
static create(name: string, ...level: Level[]): Logger;
|
|
9
|
+
private static readonly consolelogfn;
|
|
10
|
+
static disableLogs(level?: Level): void;
|
|
11
|
+
static enableLogs(): void;
|
|
12
|
+
private _logOnly;
|
|
13
|
+
private _logModules;
|
|
14
|
+
private isDevelopmentMode;
|
|
15
|
+
private modeIsSet;
|
|
16
|
+
private fixedWidth;
|
|
17
|
+
private instances;
|
|
18
|
+
private levels;
|
|
19
|
+
private modules;
|
|
20
|
+
setProductionMode(): void;
|
|
21
|
+
onlyModules(...modules: (string | RegExp)[]): void;
|
|
22
|
+
onlyLevel(...level: Level[]): void;
|
|
23
|
+
private create;
|
|
24
|
+
private isMutedModule;
|
|
25
|
+
private muteAllOtherModules;
|
|
26
26
|
}
|
package/browser/lib/logger.d.ts
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import { Level } from './level';
|
|
3
|
-
export declare class Logger {
|
|
4
|
-
private name;
|
|
5
|
-
color: string;
|
|
6
|
-
private developmentMode;
|
|
7
|
-
private allowed;
|
|
8
|
-
private isMuted;
|
|
9
|
-
fixedWidth: number | undefined;
|
|
10
|
-
private _level;
|
|
11
|
-
setLevel(l: Level): this;
|
|
12
|
-
get isProductionMode(): boolean;
|
|
13
|
-
setProductionMode(productionMode: boolean): this;
|
|
14
|
-
mute(): this;
|
|
15
|
-
constructor(name: string, color: string, developmentMode: boolean, allowed: Level[], isMuted: boolean, fixedWidth: number | undefined);
|
|
16
|
-
onlyWhen(expression: (() => boolean) | boolean): void;
|
|
17
|
-
private _data;
|
|
18
|
-
private _error;
|
|
19
|
-
private _info;
|
|
20
|
-
private _success;
|
|
21
|
-
private _taskStarted;
|
|
22
|
-
private _taskDone;
|
|
23
|
-
private _warn;
|
|
24
|
-
/** @deprecated Use data(...)
|
|
25
|
-
* @see data
|
|
26
|
-
*/
|
|
27
|
-
d: (name: string | any, ...data: any[]) => this;
|
|
28
|
-
/** @deprecated Use error(...)
|
|
29
|
-
* @see error
|
|
30
|
-
*/
|
|
31
|
-
er: (name: string | any, ...data: any[]) => this;
|
|
32
|
-
/** @deprecated Use info(...)
|
|
33
|
-
* @see info
|
|
34
|
-
*/
|
|
35
|
-
i: (name: string | any, ...data: any[]) => this;
|
|
36
|
-
/** @deprecated Use warn(...)
|
|
37
|
-
* @see warn
|
|
38
|
-
*/
|
|
39
|
-
w: (name: string | any, ...data: any[]) => this;
|
|
40
|
-
/**
|
|
41
|
-
* Logs message and data with the level=data
|
|
42
|
-
* @param message The message
|
|
43
|
-
* @param otherParams Additional parameters
|
|
44
|
-
*/
|
|
45
|
-
data: (message: string, ...otherParams: any[]) => this;
|
|
46
|
-
/**
|
|
47
|
-
* Logs message and data with the level=error
|
|
48
|
-
* @param message The message
|
|
49
|
-
* @param otherParams Additional parameters
|
|
50
|
-
*/
|
|
51
|
-
error: (message: string, ...otherParams: any[]) => this;
|
|
52
|
-
/**
|
|
53
|
-
* Logs message and data with the level=info
|
|
54
|
-
* @param message The message
|
|
55
|
-
* @param otherParams Additional parameters
|
|
56
|
-
*/
|
|
57
|
-
info: (message: string, ...otherParams: any[]) => this;
|
|
58
|
-
/**
|
|
59
|
-
* Logs message and data with the level=success
|
|
60
|
-
* @param message The message
|
|
61
|
-
* @param otherParams Additional parameters
|
|
62
|
-
*/
|
|
63
|
-
success: (message: string, ...otherParams: any[]) => this;
|
|
64
|
-
/**
|
|
65
|
-
* Logs message and data with the level=taskStarted
|
|
66
|
-
* @param message The message
|
|
67
|
-
* @param otherParams Additional parameters
|
|
68
|
-
*/
|
|
69
|
-
taskStarted: (message: string, ...otherParams: any[]) => this;
|
|
70
|
-
/**
|
|
71
|
-
* Logs message and data with the level=taskDone
|
|
72
|
-
* @param message The message
|
|
73
|
-
* @param otherParams Additional parameters
|
|
74
|
-
*/
|
|
75
|
-
taskDone: (message?: string, ...otherParams: any[]) => this;
|
|
76
|
-
/**
|
|
77
|
-
* Logs message and data with the level=warn
|
|
78
|
-
* @param message The message
|
|
79
|
-
* @param otherParams Additional parameters
|
|
80
|
-
*/
|
|
81
|
-
warn: (message: string, ...otherParams: any[]) => this;
|
|
2
|
+
import { Level } from './level';
|
|
3
|
+
export declare class Logger {
|
|
4
|
+
private name;
|
|
5
|
+
color: string;
|
|
6
|
+
private developmentMode;
|
|
7
|
+
private allowed;
|
|
8
|
+
private isMuted;
|
|
9
|
+
fixedWidth: number | undefined;
|
|
10
|
+
private _level;
|
|
11
|
+
setLevel(l: Level): this;
|
|
12
|
+
get isProductionMode(): boolean;
|
|
13
|
+
setProductionMode(productionMode: boolean): this;
|
|
14
|
+
mute(): this;
|
|
15
|
+
constructor(name: string, color: string, developmentMode: boolean, allowed: Level[], isMuted: boolean, fixedWidth: number | undefined);
|
|
16
|
+
onlyWhen(expression: (() => boolean) | boolean): void;
|
|
17
|
+
private _data;
|
|
18
|
+
private _error;
|
|
19
|
+
private _info;
|
|
20
|
+
private _success;
|
|
21
|
+
private _taskStarted;
|
|
22
|
+
private _taskDone;
|
|
23
|
+
private _warn;
|
|
24
|
+
/** @deprecated Use data(...)
|
|
25
|
+
* @see data
|
|
26
|
+
*/
|
|
27
|
+
d: (name: string | any, ...data: any[]) => this;
|
|
28
|
+
/** @deprecated Use error(...)
|
|
29
|
+
* @see error
|
|
30
|
+
*/
|
|
31
|
+
er: (name: string | any, ...data: any[]) => this;
|
|
32
|
+
/** @deprecated Use info(...)
|
|
33
|
+
* @see info
|
|
34
|
+
*/
|
|
35
|
+
i: (name: string | any, ...data: any[]) => this;
|
|
36
|
+
/** @deprecated Use warn(...)
|
|
37
|
+
* @see warn
|
|
38
|
+
*/
|
|
39
|
+
w: (name: string | any, ...data: any[]) => this;
|
|
40
|
+
/**
|
|
41
|
+
* Logs message and data with the level=data
|
|
42
|
+
* @param message The message
|
|
43
|
+
* @param otherParams Additional parameters
|
|
44
|
+
*/
|
|
45
|
+
data: (message: string, ...otherParams: any[]) => this;
|
|
46
|
+
/**
|
|
47
|
+
* Logs message and data with the level=error
|
|
48
|
+
* @param message The message
|
|
49
|
+
* @param otherParams Additional parameters
|
|
50
|
+
*/
|
|
51
|
+
error: (message: string, ...otherParams: any[]) => this;
|
|
52
|
+
/**
|
|
53
|
+
* Logs message and data with the level=info
|
|
54
|
+
* @param message The message
|
|
55
|
+
* @param otherParams Additional parameters
|
|
56
|
+
*/
|
|
57
|
+
info: (message: string, ...otherParams: any[]) => this;
|
|
58
|
+
/**
|
|
59
|
+
* Logs message and data with the level=success
|
|
60
|
+
* @param message The message
|
|
61
|
+
* @param otherParams Additional parameters
|
|
62
|
+
*/
|
|
63
|
+
success: (message: string, ...otherParams: any[]) => this;
|
|
64
|
+
/**
|
|
65
|
+
* Logs message and data with the level=taskStarted
|
|
66
|
+
* @param message The message
|
|
67
|
+
* @param otherParams Additional parameters
|
|
68
|
+
*/
|
|
69
|
+
taskStarted: (message: string, ...otherParams: any[]) => this;
|
|
70
|
+
/**
|
|
71
|
+
* Logs message and data with the level=taskDone
|
|
72
|
+
* @param message The message
|
|
73
|
+
* @param otherParams Additional parameters
|
|
74
|
+
*/
|
|
75
|
+
taskDone: (message?: string, ...otherParams: any[]) => this;
|
|
76
|
+
/**
|
|
77
|
+
* Logs message and data with the level=warn
|
|
78
|
+
* @param message The message
|
|
79
|
+
* @param otherParams Additional parameters
|
|
80
|
+
*/
|
|
81
|
+
warn: (message: string, ...otherParams: any[]) => this;
|
|
82
82
|
}
|
package/browser/ng2-logger.d.ts
CHANGED
package/client/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
/* */
|
|
2
|
-
/* */
|
|
3
|
-
/* */
|
|
4
|
-
/* */
|
|
5
|
-
/* */
|
|
6
|
-
/* */
|
|
7
|
-
/* */
|
|
8
|
-
export function consoleLog(data, level) {
|
|
9
|
-
/* */
|
|
10
|
-
/* */
|
|
11
|
-
/* */
|
|
12
|
-
/* */
|
|
13
|
-
/* */
|
|
14
|
-
/* */
|
|
15
|
-
/* */
|
|
16
|
-
/* */
|
|
17
|
-
}
|
|
18
|
-
export function displayParams(params = [], level) {
|
|
19
|
-
/* */
|
|
20
|
-
/* */
|
|
21
|
-
/* */
|
|
22
|
-
/* */
|
|
23
|
-
/* */
|
|
24
|
-
/* */
|
|
25
|
-
/* */
|
|
26
|
-
/* */
|
|
27
|
-
/* */
|
|
28
|
-
/* */
|
|
29
|
-
}
|
|
30
|
-
function replace(out, match, char, color) {
|
|
31
|
-
/* */
|
|
32
|
-
/* */
|
|
33
|
-
/* */
|
|
34
|
-
/* */
|
|
35
|
-
/* */
|
|
36
|
-
/* */
|
|
37
|
-
/* */
|
|
38
|
-
/* */
|
|
39
|
-
/* */
|
|
40
|
-
/* */
|
|
41
|
-
}
|
|
42
|
-
function handleObjectData(param, level) {
|
|
43
|
-
/* */
|
|
44
|
-
/* */
|
|
45
|
-
/* */
|
|
46
|
-
/* */
|
|
47
|
-
/* */
|
|
48
|
-
/* */
|
|
49
|
-
/* */
|
|
50
|
-
/* */
|
|
51
|
-
/* */
|
|
52
|
-
/* */
|
|
53
|
-
/* */
|
|
54
|
-
/* */
|
|
55
|
-
/* */
|
|
56
|
-
/* */
|
|
57
|
-
/* */
|
|
58
|
-
/* */
|
|
59
|
-
/* */
|
|
60
|
-
/* */
|
|
61
|
-
/* */
|
|
62
|
-
/* */
|
|
63
|
-
/* */
|
|
64
|
-
/* */
|
|
65
|
-
/* */
|
|
66
|
-
/* */
|
|
67
|
-
/* */
|
|
68
|
-
/* */
|
|
69
|
-
}
|
|
70
|
-
export function istartedInVscode() {
|
|
71
|
-
/* */
|
|
72
|
-
/* */
|
|
73
|
-
/* */
|
|
74
|
-
/* */
|
|
75
|
-
/* */
|
|
76
|
-
/* */
|
|
77
|
-
/* */
|
|
78
|
-
/* */
|
|
79
|
-
/* */
|
|
80
|
-
/* */
|
|
81
|
-
/* */
|
|
82
|
-
}
|
|
83
|
-
function isObjectAfterStringify(s) {
|
|
84
|
-
/* */
|
|
85
|
-
/* */
|
|
86
|
-
/* */
|
|
87
|
-
/* */
|
|
88
|
-
/* */
|
|
89
|
-
/* */
|
|
90
|
-
/* */
|
|
91
|
-
}
|
|
92
|
-
;
|
|
93
|
-
({}); // @--end-of-file-for-module=ng2-logger lib/backend-logging.ts
|
|
1
|
+
/* */
|
|
2
|
+
/* */
|
|
3
|
+
/* */
|
|
4
|
+
/* */
|
|
5
|
+
/* */
|
|
6
|
+
/* */
|
|
7
|
+
/* */
|
|
8
|
+
export function consoleLog(data, level) {
|
|
9
|
+
/* */
|
|
10
|
+
/* */
|
|
11
|
+
/* */
|
|
12
|
+
/* */
|
|
13
|
+
/* */
|
|
14
|
+
/* */
|
|
15
|
+
/* */
|
|
16
|
+
/* */
|
|
17
|
+
}
|
|
18
|
+
export function displayParams(params = [], level) {
|
|
19
|
+
/* */
|
|
20
|
+
/* */
|
|
21
|
+
/* */
|
|
22
|
+
/* */
|
|
23
|
+
/* */
|
|
24
|
+
/* */
|
|
25
|
+
/* */
|
|
26
|
+
/* */
|
|
27
|
+
/* */
|
|
28
|
+
/* */
|
|
29
|
+
}
|
|
30
|
+
function replace(out, match, char, color) {
|
|
31
|
+
/* */
|
|
32
|
+
/* */
|
|
33
|
+
/* */
|
|
34
|
+
/* */
|
|
35
|
+
/* */
|
|
36
|
+
/* */
|
|
37
|
+
/* */
|
|
38
|
+
/* */
|
|
39
|
+
/* */
|
|
40
|
+
/* */
|
|
41
|
+
}
|
|
42
|
+
function handleObjectData(param, level) {
|
|
43
|
+
/* */
|
|
44
|
+
/* */
|
|
45
|
+
/* */
|
|
46
|
+
/* */
|
|
47
|
+
/* */
|
|
48
|
+
/* */
|
|
49
|
+
/* */
|
|
50
|
+
/* */
|
|
51
|
+
/* */
|
|
52
|
+
/* */
|
|
53
|
+
/* */
|
|
54
|
+
/* */
|
|
55
|
+
/* */
|
|
56
|
+
/* */
|
|
57
|
+
/* */
|
|
58
|
+
/* */
|
|
59
|
+
/* */
|
|
60
|
+
/* */
|
|
61
|
+
/* */
|
|
62
|
+
/* */
|
|
63
|
+
/* */
|
|
64
|
+
/* */
|
|
65
|
+
/* */
|
|
66
|
+
/* */
|
|
67
|
+
/* */
|
|
68
|
+
/* */
|
|
69
|
+
}
|
|
70
|
+
export function istartedInVscode() {
|
|
71
|
+
/* */
|
|
72
|
+
/* */
|
|
73
|
+
/* */
|
|
74
|
+
/* */
|
|
75
|
+
/* */
|
|
76
|
+
/* */
|
|
77
|
+
/* */
|
|
78
|
+
/* */
|
|
79
|
+
/* */
|
|
80
|
+
/* */
|
|
81
|
+
/* */
|
|
82
|
+
}
|
|
83
|
+
function isObjectAfterStringify(s) {
|
|
84
|
+
/* */
|
|
85
|
+
/* */
|
|
86
|
+
/* */
|
|
87
|
+
/* */
|
|
88
|
+
/* */
|
|
89
|
+
/* */
|
|
90
|
+
/* */
|
|
91
|
+
}
|
|
92
|
+
;
|
|
93
|
+
({}); // @--end-of-file-for-module=ng2-logger lib/backend-logging.ts
|
|
94
94
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFja2VuZC1sb2dnaW5nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS9uZzItbG9nZ2VyL3Byb2plY3RzL25nMi1sb2dnZXIvc3JjL2xpYi9iYWNrZW5kLWxvZ2dpbmcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsS0FBSztBQUNMLEtBQUs7QUFLTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUdMLE1BQU0sVUFBVSxVQUFVLENBQUMsSUFBWSxFQUFFLEtBQVk7SUFDckQsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7QUFFTCxDQUFDO0FBR0QsTUFBTSxVQUFVLGFBQWEsQ0FBQyxTQUFnQixFQUFFLEVBQUUsS0FBWTtJQUM5RCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0FBRUwsQ0FBQztBQUVELFNBQVMsT0FBTyxDQUFDLEdBQVcsRUFBRSxLQUFhLEVBQUUsSUFBWSxFQUFFLEtBQVU7SUFDckUsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztBQUVMLENBQUM7QUFHRCxTQUFTLGdCQUFnQixDQUFDLEtBQWEsRUFBRSxLQUFZO0lBQ3JELEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0FBRUwsQ0FBQztBQUdELE1BQU0sVUFBVSxnQkFBZ0I7SUFDaEMsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7QUFFTCxDQUFDO0FBRUQsU0FBUyxzQkFBc0IsQ0FBQyxDQUFTO0lBQ3pDLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7SUFDTCxLQUFLO0lBQ0wsS0FBSztJQUNMLEtBQUs7QUFFTCxDQUFDO0FBRUEsQ0FBQztBQUFBLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyw4REFBOEQiLCJzb3VyY2VzQ29udGVudCI6WyIvKiAqL1xuLyogKi9cbiAgXG5cbmltcG9ydCB7IExldmVsIH0gZnJvbSAnLi9sZXZlbCc7XG5cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuICBcblxuZXhwb3J0IGZ1bmN0aW9uIGNvbnNvbGVMb2coZGF0YTogc3RyaW5nLCBsZXZlbDogTGV2ZWwpIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuICBcbn1cblxuXG5leHBvcnQgZnVuY3Rpb24gZGlzcGxheVBhcmFtcyhwYXJhbXM6IGFueVtdID0gW10sIGxldmVsOiBMZXZlbCkge1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbiAgXG59XG5cbmZ1bmN0aW9uIHJlcGxhY2Uob3V0OiBzdHJpbmcsIG1hdGNoOiBSZWdFeHAsIGNoYXI6IFJlZ0V4cCwgY29sb3I6IGFueSkge1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbiAgXG59XG5cblxuZnVuY3Rpb24gaGFuZGxlT2JqZWN0RGF0YShwYXJhbTogc3RyaW5nLCBsZXZlbDogTGV2ZWwpIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuICBcbn1cblxuXG5leHBvcnQgZnVuY3Rpb24gaXN0YXJ0ZWRJblZzY29kZSgpIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuICBcbn1cblxuZnVuY3Rpb24gaXNPYmplY3RBZnRlclN0cmluZ2lmeShzOiBzdHJpbmcpIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4gIFxufVxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9bmcyLWxvZ2dlciBsaWIvYmFja2VuZC1sb2dnaW5nLnRzIl19
|