Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(IFL-2707): conditionally logs scan starts and ends #5591

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions ironfish/src/wallet/scanner/walletScanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,12 @@ export class WalletScanner {
this.state = scan
unlock()

jowparks marked this conversation as resolved.
Show resolved Hide resolved
this.logger.debug(
`Scan starting from block ${scan.start.sequence} to ${scan.start.sequence}`,
)
const logScanState = scan.start.sequence !== scan.end.sequence
if (logScanState) {
this.logger.debug(
`Scan starting from block ${scan.start.sequence} to ${scan.end.sequence}`,
)
}

decryptor.start(scan.abortController)

Expand Down Expand Up @@ -136,11 +139,13 @@ export class WalletScanner {
await decryptor.flush()
})()
.then(() => {
this.logger.debug(
`Finished scanning for transactions after ${Math.floor(
(Date.now() - scan.startedAt) / 1000,
)} seconds`,
)
if (logScanState) {
this.logger.debug(
`Finished scanning for transactions after ${Math.floor(
(Date.now() - scan.startedAt) / 1000,
)} seconds`,
)
}
})
.finally(() => {
decryptor.stop()
Expand Down