chore: remove console log

This commit is contained in:
monoid 2025-05-01 23:57:31 +09:00
parent 1f79f36dfc
commit fb50ff1c08

View file

@ -20,7 +20,6 @@ class FileReader extends Reader<string> {
this.size = stat.size;
// not implemented yet
(this.fd as unknown as EventEmitter).on("close", () => {
console.warn(`file handle closed: ${this.path}`);
this.fd?.close();
this.fd = undefined;
});