aboutsummaryrefslogtreecommitdiff
path: root/assets/js
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 /assets/js
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 'assets/js')
-rw-r--r--assets/js/index.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/assets/js/index.js b/assets/js/index.js
index b0f2f84..8eae4fb 100644
--- a/assets/js/index.js
+++ b/assets/js/index.js
@@ -3,7 +3,7 @@
if (cookiesDisabled) {
document.cookie = "disabled";
document.cookie.indexOf("disabled");
- return console.log("Pager is disabled due to cookie restrictions.");
+ return console.warn("WARNING: Pager disabled due to cookie restrictions");
}
let seek;
let settings = {
@@ -115,10 +115,10 @@
indicator.removeAttribute("id");
indicator.dataset.update = "refresh";
self.removeEventListener("blur", update);
- console.log("R: " + remote);
- console.log("L: " + local);
- console.log("D: " + drift);
- console.log("M: " + modified);
+ console.log("INFO: R: " + remote);
+ console.log("INFO: L: " + local);
+ console.log("INFO: D: " + drift);
+ console.log("INFO: M: " + modified);
}
});
}
@@ -548,7 +548,7 @@
});
search(query.value, data.items, options);
}).catch(function(error) {
- console.log("Error failed to load fuzzy sort: " + error);
+ console.error("ERROR: Failed to load fuzzy search", error);
});
}
}
@@ -739,7 +739,7 @@
}
}
} catch (error) {
- console.error("Error: Unable to resolve relative time format!", error);
+ console.error("ERROR: Relative time resolution failed", error);
}
})(elements[i1]);
}
@@ -757,4 +757,4 @@
}, 1000);
});
})();
-console.log("Surface Control: Complete"); \ No newline at end of file
+console.log("INFO: Surface Control Complete"); \ No newline at end of file