nelog 0.0.1 → 0.0.2

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 CHANGED
@@ -1,4 +1,4 @@
1
- # NoLog
1
+ # NeLog
2
2
 
3
3
  nelog — adapter based logger util
4
4
 
package/lib/entry.js CHANGED
@@ -40,6 +40,7 @@ class Entry {
40
40
  // WithName add name to entry data
41
41
  withName(name) {
42
42
  this.data.name = name;
43
+ this.data.withName = true;
43
44
  return this;
44
45
  }
45
46
  // Print default log
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nelog",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Logger",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",