aboutsummaryrefslogtreecommitdiff
path: root/static/js/index-bundle.ts
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-12-06 16:36:24 -0500
committertdro <tdro@noreply.example.com>2023-12-06 16:36:24 -0500
commit3636d3e9357960f2dfd9b17da917d183db968427 (patch)
treefe92b7ae7a01d282867af180ad3eaf97bab4f748 /static/js/index-bundle.ts
parente469338b416a4c129fd42fd448e902ddd1f66921 (diff)
downloadcanory-3636d3e9357960f2dfd9b17da917d183db968427.tar.gz
canory-3636d3e9357960f2dfd9b17da917d183db968427.tar.bz2
canory-3636d3e9357960f2dfd9b17da917d183db968427.zip
static/js: Organize console filters
Info, warning, and errors
Diffstat (limited to 'static/js/index-bundle.ts')
-rw-r--r--static/js/index-bundle.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/static/js/index-bundle.ts b/static/js/index-bundle.ts
index bb9bee7..61dc414 100644
--- a/static/js/index-bundle.ts
+++ b/static/js/index-bundle.ts
@@ -14,8 +14,5 @@ const fileSize = ((await Deno.stat(file)).size / 1024).toFixed(2) + "kB";
await Deno.writeTextFile(file, output, {});
-console.log(
- `Bundle file:///${file}` +
- "\n" +
- `Emit file:///${file} (${fileSize})`,
-);
+console.log("INFO:", `Bundle file:///${file}`);
+console.log("INFO:", `Emit file:///${file} (${fileSize})`);