Enhance logging on compact block processor

This commit is contained in:
Francisco Gindre 2020-03-19 12:59:45 -03:00
parent 18eea3261c
commit bca093ca42
1 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ public class CompactBlockProcessor {
validateChainOperation.completionHandler = { (finished, cancelled) in
guard !cancelled else {
LoggerProxy.debug("Warning: operation cancelled")
LoggerProxy.debug("Warning: validateChainOperation operation cancelled")
return
}
@ -411,7 +411,7 @@ public class CompactBlockProcessor {
scanBlocksOperation.completionHandler = { [weak self] (finished, cancelled) in
guard !cancelled else {
LoggerProxy.debug("Warning: operation cancelled")
LoggerProxy.debug("Warning: scanBlocksOperation operation cancelled")
return
}
self?.processBatchFinished(range: range)