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