Skip to content

Commit f326969

Browse files
committed
Stop dumping binary data to the console
This was freaking out and freezing the Puter server, and my entire terminal app. XD
1 parent c2c87bf commit f326969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/services/file-cache/FileCacheService.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class FileCacheService extends AdvancedBase {
250250
const path = this._get_path(tracker.key);
251251
console.log(`precache fetch key I guess?`, tracker.key);
252252
const data = this.precache.get(tracker.key);
253-
console.log(`path and data: ${path} ${data}`);
253+
// console.log(`path and data: ${path} ${data}`);
254254
await fs.promises.writeFile(path, data);
255255
this.precache.delete(tracker.key);
256256
tracker.phase = FileTracker.PHASE_DISK;

0 commit comments

Comments
 (0)