@@ -1,3 +1,6 @@
+#### v0.0.9:
+while inspecting objects, reverted object print from single line to default
+
##### v0.0.8:
Implemented filter per logger
```json
@@ -12,7 +12,7 @@ var Logger = class Logger {
this.count = 0;
}
base(LVL,args) {
- var msg = args.map(a => (typeof(a) == "object")? util.inspect(a).replace(/\n/g,''):a).join(" ");
+ var msg = args.map(a => (typeof(a) == "object")? util.inspect(a):a).join(" ");
this.sys.base(this,LVL,msg);
this.lastTime = process.hrtime();
this.count++;
@@ -1,6 +1,6 @@
{
"name": "hlogger",
- "version": "0.0.8",
+ "version": "0.0.9",
"description": "Yet another logger",
"main": "index.js",
"scripts": {