not-node 6.3.77 → 6.3.78
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/package.json +1 -1
- package/src/domain.js +15 -0
package/package.json
CHANGED
package/src/domain.js
CHANGED
|
@@ -326,6 +326,21 @@ class notDomain extends EventEmitter {
|
|
|
326
326
|
return this;
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
+
warn() {
|
|
330
|
+
this.logger.warn(...arguments);
|
|
331
|
+
return this;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
error() {
|
|
335
|
+
this.logger.error(...arguments);
|
|
336
|
+
return this;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
debug() {
|
|
340
|
+
this.logger.debug(...arguments);
|
|
341
|
+
return this;
|
|
342
|
+
}
|
|
343
|
+
|
|
329
344
|
/**
|
|
330
345
|
* reporter - errors
|
|
331
346
|
*/
|