@e22m4u/ts-rest-router 0.2.8 → 0.2.9
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/cjs/index.cjs
CHANGED
@@ -118,7 +118,7 @@ var _DebuggableService = class _DebuggableService extends import_js_service.Serv
|
|
118
118
|
constructor(container) {
|
119
119
|
super(container);
|
120
120
|
const serviceName = toCamelCase(this.constructor.name);
|
121
|
-
this.debug = (0, import_js_debug.createDebugger)("tsRestRouter", serviceName);
|
121
|
+
this.debug = (0, import_js_debug.createDebugger)("tsRestRouter", serviceName).withoutEnvNs();
|
122
122
|
const debug = this.debug.withNs("constructor").withHash();
|
123
123
|
debug("Service created.");
|
124
124
|
}
|
@@ -27,7 +27,7 @@ export class DebuggableService extends Service {
|
|
27
27
|
constructor(container) {
|
28
28
|
super(container);
|
29
29
|
const serviceName = toCamelCase(this.constructor.name);
|
30
|
-
this.debug = createDebugger('tsRestRouter', serviceName);
|
30
|
+
this.debug = createDebugger('tsRestRouter', serviceName).withoutEnvNs();
|
31
31
|
const debug = this.debug.withNs('constructor').withHash();
|
32
32
|
debug('Service created.');
|
33
33
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@e22m4u/ts-rest-router",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.9",
|
4
4
|
"description": "REST маршрутизатор на основе контроллеров для TypeScript",
|
5
5
|
"author": "e22m4u <e22m4u@yandex.ru>",
|
6
6
|
"license": "MIT",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"prepare": "husky"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"@e22m4u/js-debug": "~0.1.
|
44
|
+
"@e22m4u/js-debug": "~0.1.6",
|
45
45
|
"@e22m4u/js-format": "~0.1.0",
|
46
46
|
"@e22m4u/js-service": "~0.2.0",
|
47
47
|
"@e22m4u/js-trie-router": "~0.0.1",
|
@@ -33,7 +33,7 @@ export class DebuggableService extends Service {
|
|
33
33
|
constructor(container?: ServiceContainer) {
|
34
34
|
super(container);
|
35
35
|
const serviceName = toCamelCase(this.constructor.name);
|
36
|
-
this.debug = createDebugger('tsRestRouter', serviceName);
|
36
|
+
this.debug = createDebugger('tsRestRouter', serviceName).withoutEnvNs();
|
37
37
|
const debug = this.debug.withNs('constructor').withHash();
|
38
38
|
debug('Service created.');
|
39
39
|
}
|