Skip to content
Snippets Groups Projects
Commit 5b76e516 authored by OZGCloud's avatar OZGCloud
Browse files

adjust parsing message from "warn" to "debug" level

parent 80d299de
Branches
Tags
No related merge requests found
......@@ -135,7 +135,7 @@ export function convertToBoolean(booleanStr: string): boolean {
try {
return JSON.parse(booleanStr.toLowerCase());
} catch (e: unknown) {
console.warn('Error parsing ' + booleanStr + ' to boolean value.', e);
console.debug('Error parsing ' + booleanStr + ' to boolean value.', e);
return undefined;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment