Remove console.trace

This commit is contained in:
Pieter Vander Vennet 2021-04-26 21:10:34 +02:00
parent 2bf6bac994
commit 1c413cd6cc
2 changed files with 5 additions and 2 deletions

View file

@ -26,7 +26,6 @@ export default class Hash {
}
const hash = new UIEventSource<string>(window.location.hash.substr(1));
hash.addCallback(h => {
console.trace("Hash was changed into ",h)
if (h === "undefined") {
console.warn("Got a literal 'undefined' as hash, ignoring")
h = undefined;