Remove BDK Sync Log Category #47

This commit is contained in:
Paul Miller
2023-04-26 18:14:12 -05:00
parent adb657cc2e
commit 8e8a67fdcc

View File

@@ -68,13 +68,11 @@ export const Provider: ParentComponent = (props) => {
}, },
async sync(): Promise<void> { async sync(): Promise<void> {
console.time("BDK Sync Time") console.time("BDK Sync Time")
console.groupCollapsed("BDK Sync")
try { try {
await state.node_manager?.sync() await state.node_manager?.sync()
} catch (e) { } catch (e) {
console.error(e); console.error(e);
} }
console.groupEnd();
console.timeEnd("BDK Sync Time") console.timeEnd("BDK Sync Time")
}, },
setScanResult(scan_result: ParsedParams) { setScanResult(scan_result: ParsedParams) {