Change logs to warnings, since that's what they really are

This commit is contained in:
Emily Doherty 2024-04-12 05:06:41 -07:00
parent 0e40f403e4
commit 4a7c03307d

View File

@ -258,7 +258,7 @@ function detectRegionQuery(urlSearchParams) {
}
}
} else {
console.log("An incorrect or malformed region selection was made in the query string");
console.warn("An incorrect or malformed region selection was made in the query string");
}
}
@ -276,7 +276,7 @@ function detectTimeQuery(urlSearchParams) {
}
}
} else {
console.log("An incorrect or malformed time selection was made in the query string");
console.warn("An incorrect or malformed time selection was made in the query string");
}
}
@ -292,7 +292,7 @@ function detectAggregateQuery(urlSearchParams) {
}
aggregateFunctionToggle();
} else {
console.log("An incorrect or malformed aggregate selection was made in the query string");
console.warn("An incorrect or malformed aggregate selection was made in the query string");
}
}