@futdevpro/fsm-dynamo 1.5.65 → 1.5.66
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/lib/_utils/log.util.d.ts +1 -1
- package/lib/_utils/log.util.js +11 -11
- package/lib/tsconfig.tsbuildinfo +2 -2
- package/package.json +1 -1
- package/src/_utils/log.util.ts +11 -11
package/lib/_utils/log.util.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare class Dynamo_Log {
|
|
|
29
29
|
static highlightedLog(message: any, ...optionalParams: any[]): void;
|
|
30
30
|
static test(message: any, ...optionalParams: any[]): void;
|
|
31
31
|
/**
|
|
32
|
-
* @deprecated use Dynamo_Log.
|
|
32
|
+
* @deprecated use Dynamo_Log.test instead
|
|
33
33
|
*/
|
|
34
34
|
static testLog(message: any, ...optionalParams: any[]): void;
|
|
35
35
|
static testError(message: any, ...optionalParams: any[]): void;
|
package/lib/_utils/log.util.js
CHANGED
|
@@ -81,35 +81,35 @@ class Dynamo_Log {
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
static highlightedLog(message, ...optionalParams) {
|
|
84
|
-
console.log('\n\n
|
|
84
|
+
console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
85
85
|
console.log(message, ...optionalParams);
|
|
86
|
-
console.log('\n
|
|
86
|
+
console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
87
87
|
}
|
|
88
88
|
static test(message, ...optionalParams) {
|
|
89
|
-
console.log('\n\n
|
|
89
|
+
console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
90
90
|
console.log(message, ...optionalParams);
|
|
91
|
-
console.log('\n
|
|
91
|
+
console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
* @deprecated use Dynamo_Log.
|
|
94
|
+
* @deprecated use Dynamo_Log.test instead
|
|
95
95
|
*/
|
|
96
96
|
static testLog(message, ...optionalParams) {
|
|
97
97
|
this.test(message, ...optionalParams);
|
|
98
98
|
}
|
|
99
99
|
static testError(message, ...optionalParams) {
|
|
100
|
-
this.error('\n\n
|
|
100
|
+
this.error('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
101
101
|
this.error(message, ...optionalParams);
|
|
102
|
-
this.error('\n
|
|
102
|
+
this.error('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
103
103
|
}
|
|
104
104
|
static testWarn(message, ...optionalParams) {
|
|
105
|
-
this.warn('\n\n
|
|
105
|
+
this.warn('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
106
106
|
this.warn(message, ...optionalParams);
|
|
107
|
-
this.warn('\n
|
|
107
|
+
this.warn('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
108
108
|
}
|
|
109
109
|
static testSuccess(message, ...optionalParams) {
|
|
110
|
-
this.success('\n\n
|
|
110
|
+
this.success('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
111
111
|
this.success(message, ...optionalParams);
|
|
112
|
-
this.success('\n
|
|
112
|
+
this.success('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
113
113
|
}
|
|
114
114
|
static removeLogStyles(message) {
|
|
115
115
|
for (let styleKey of Object(log_style_enum_1.Dynamo_LogStyle)) {
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -362,8 +362,8 @@
|
|
|
362
362
|
"affectsGlobalScope": false
|
|
363
363
|
},
|
|
364
364
|
"../src/_utils/log.util.ts": {
|
|
365
|
-
"version": "
|
|
366
|
-
"signature": "
|
|
365
|
+
"version": "809f74c31d1bd8f3d1d5915932c7a79ec65e36d344181dd6795845780b17024c",
|
|
366
|
+
"signature": "b06852c14f0ea2f182bd81d2bc82d178d7b7cdf4de8c5ffc6c57d31274b2b0a6",
|
|
367
367
|
"affectsGlobalScope": false
|
|
368
368
|
},
|
|
369
369
|
"../src/_models/control-models/error.control-model.ts": {
|
package/package.json
CHANGED
package/src/_utils/log.util.ts
CHANGED
|
@@ -87,39 +87,39 @@ export class Dynamo_Log {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
static highlightedLog(message: any, ...optionalParams: any[]): void {
|
|
90
|
-
console.log('\n\n
|
|
90
|
+
console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
91
91
|
console.log(message, ...optionalParams);
|
|
92
|
-
console.log('\n
|
|
92
|
+
console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
static test(message: any, ...optionalParams: any[]): void {
|
|
96
|
-
console.log('\n\n
|
|
96
|
+
console.log('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
97
97
|
console.log(message, ...optionalParams);
|
|
98
|
-
console.log('\n
|
|
98
|
+
console.log('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
|
-
* @deprecated use Dynamo_Log.
|
|
101
|
+
* @deprecated use Dynamo_Log.test instead
|
|
102
102
|
*/
|
|
103
103
|
static testLog(message: any, ...optionalParams: any[]): void {
|
|
104
104
|
this.test(message, ...optionalParams);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
static testError(message: any, ...optionalParams: any[]): void {
|
|
108
|
-
this.error('\n\n
|
|
108
|
+
this.error('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
109
109
|
this.error(message, ...optionalParams);
|
|
110
|
-
this.error('\n
|
|
110
|
+
this.error('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
static testWarn(message: any, ...optionalParams: any[]): void {
|
|
114
|
-
this.warn('\n\n
|
|
114
|
+
this.warn('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
115
115
|
this.warn(message, ...optionalParams);
|
|
116
|
-
this.warn('\n
|
|
116
|
+
this.warn('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
static testSuccess(message: any, ...optionalParams: any[]): void {
|
|
120
|
-
this.success('\n\n
|
|
120
|
+
this.success('\n\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n');
|
|
121
121
|
this.success(message, ...optionalParams);
|
|
122
|
-
this.success('\n
|
|
122
|
+
this.success('\n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n');
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
static removeLogStyles(message: any): string {
|