@@ -536,7 +536,7 @@ impl EngineClient for Client {
536
536
match self . io_channel . lock ( ) . send ( ClientIoMessage :: UpdateBestAsCommitted ( block_hash) ) {
537
537
Ok ( _) => { }
538
538
Err ( e) => {
539
- cdebug ! ( CLIENT , "Error while triggering the best block update: {}" , e) ;
539
+ cerror ! ( CLIENT , "Error while triggering the best block update: {}" , e) ;
540
540
}
541
541
}
542
542
}
@@ -618,15 +618,15 @@ impl BlockChainClient for Client {
618
618
let queue_size = self . queue_transactions . load ( AtomicOrdering :: Relaxed ) ;
619
619
ctrace ! ( EXTERNAL_PARCEL , "Queue size: {}" , queue_size) ;
620
620
if queue_size > MAX_MEM_POOL_SIZE {
621
- debug ! ( "Ignoring {} transactions: queue is full" , transactions. len( ) ) ;
621
+ cwarn ! ( EXTERNAL_PARCEL , "Ignoring {} transactions: queue is full" , transactions. len( ) ) ;
622
622
} else {
623
623
let len = transactions. len ( ) ;
624
624
match self . io_channel . lock ( ) . send ( ClientIoMessage :: NewTransactions ( transactions, peer_id) ) {
625
625
Ok ( _) => {
626
626
self . queue_transactions . fetch_add ( len, AtomicOrdering :: SeqCst ) ;
627
627
}
628
628
Err ( e) => {
629
- debug ! ( "Ignoring {} transactions: error queueing: {}" , len, e) ;
629
+ cwarn ! ( EXTERNAL_PARCEL , "Ignoring {} transactions: error queueing: {}" , len, e) ;
630
630
}
631
631
}
632
632
}
@@ -793,7 +793,7 @@ impl ImportSealedBlock for Client {
793
793
let header = block. header ( ) . clone ( ) ;
794
794
795
795
let route = self . importer . commit_block ( block, & header, & block_data, self ) ;
796
- ctrace ! ( CLIENT , "Imported sealed block #{} ({})" , number, h) ;
796
+ cinfo ! ( CLIENT , "Imported sealed block #{} ({})" , number, h) ;
797
797
route
798
798
} ;
799
799
let ( enacted, retracted) = self . importer . calculate_enacted_retracted ( & [ route] ) ;
0 commit comments