@indra.ai/deva.log 0.0.62 → 0.0.64

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.
Files changed (2) hide show
  1. package/index.js +11 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -73,7 +73,17 @@ const LOG = new Deva({
73
73
  },
74
74
 
75
75
  },
76
- methods: {},
76
+ methods: {
77
+ log(packet) {
78
+ return new Promise((resolve, reject) => {
79
+ try {
80
+ return resolve({})
81
+ } catch (err) {
82
+ return this.error(err, packet, reject);
83
+ }
84
+ });
85
+ }
86
+ },
77
87
  onReady(data, resolve) {
78
88
  const {uri,database} = this.services().personal.mongo;
79
89
  this.modules.client = new MongoClient(uri);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": 4148108755733,
3
3
  "name": "@indra.ai/deva.log",
4
- "version": "0.0.62",
4
+ "version": "0.0.64",
5
5
  "author": "Quinn Michaels",
6
6
  "license": "MIT",
7
7
  "copyright": "2025",
@@ -28,7 +28,7 @@
28
28
  "url": "https://deva.space/devas/log"
29
29
  },
30
30
  "dependencies": {
31
- "@indra.ai/deva": "^1.5.49",
31
+ "@indra.ai/deva": "^1.5.50",
32
32
  "@indra.ai/deva.error": "^0.0.10",
33
33
  "mongodb": "^6.1.0"
34
34
  },