commit dc47c318bd7272099ec8a66ddc48810f91fa52b9
parent 81ff16f86a1ebfdd01851901aa86036b4041a1ad
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Fri, 30 May 2025 09:58:55 +0200
Removed log message that appears at wrong time
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/web/storage.cpp b/web/storage.cpp
@@ -55,7 +55,6 @@ EM_ASYNC_JS(int, download_and_store, (const char *key, const char *url), {
return 0;
}
- console.log("Data for " + key + " downloaded, writing to storage...");
let data = await response.bytes();
var stream = FS.open("/tables/" + key, "w+");
FS.write(stream, data, 0, data.length, 0);