@andersbakken/fisk 4.0.9 → 4.0.10
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/builder/fisk-builder.js +1 -1
- package/package.json +1 -1
package/builder/fisk-builder.js
CHANGED
|
@@ -55106,7 +55106,7 @@ const client = new Client(option, common.Version);
|
|
|
55106
55106
|
client.on("objectCache", (enabled) => {
|
|
55107
55107
|
const size = option("object-cache-size");
|
|
55108
55108
|
const objectCacheSize = typeof size === "number" ? size : bytesExports.parse(String(size));
|
|
55109
|
-
console.log("got object cache", enabled, objectCacheSize, option("object-cache-size"));
|
|
55109
|
+
// console.log("got object cache", enabled, objectCacheSize, option("object-cache-size"));
|
|
55110
55110
|
if (enabled && objectCacheSize) {
|
|
55111
55111
|
const objectCacheDir = stringOrUndefined(option("object-cache-dir")) || path__default["default"].join(common.cacheDir(), "objectcache");
|
|
55112
55112
|
objectCache = new ObjectCache(objectCacheDir, objectCacheSize, option.int("object-cache-purge-size") || objectCacheSize);
|