Skip to content

Commit f73dbc8

Browse files
fix: remove console log on monitoring data parsing error (#723)
1 parent c0b7c7d commit f73dbc8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/utils/monitoring.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ export function parseMonitoringData(monitoring: string): ParsedMonitoringData |
7272
if (typeof data === 'object' && 'monitoring_url' in data) {
7373
return data;
7474
}
75-
} catch (error) {
76-
console.log(error);
77-
}
75+
} catch {}
7876

7977
return undefined;
8078
}

0 commit comments

Comments
 (0)