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

(cherry picked from commit 4a7c03307d)
This commit is contained in:
Emily Doherty 2024-04-12 05:06:41 -07:00
parent 36ba83d9be
commit 09ec5f0d4d

View File

@ -258,7 +258,7 @@ function detectRegionQuery(urlSearchParams) {
} }
} }
} else { } 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 { } 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(); aggregateFunctionToggle();
} else { } 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");
} }
} }