@voltagent/core 0.1.4 → 0.1.5
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/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/memory/libsql/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1874,7 +1874,8 @@ var LibSQLStorage = class {
|
|
|
1874
1874
|
* @param data Additional data to log
|
|
1875
1875
|
*/
|
|
1876
1876
|
debug(message, data) {
|
|
1877
|
-
|
|
1877
|
+
var _a;
|
|
1878
|
+
if ((_a = this.options) == null ? void 0 : _a.debug) {
|
|
1878
1879
|
console.log(`[LibSQLStorage] ${message}`, data || "");
|
|
1879
1880
|
}
|
|
1880
1881
|
}
|