@@ -536,7 +536,7 @@ impl EngineClient for Client {
536536 match self . io_channel . lock ( ) . send ( ClientIoMessage :: UpdateBestAsCommitted ( block_hash) ) {
537537 Ok ( _) => { }
538538 Err ( e) => {
539- cdebug ! ( CLIENT , "Error while triggering the best block update: {}" , e) ;
539+ cerror ! ( CLIENT , "Error while triggering the best block update: {}" , e) ;
540540 }
541541 }
542542 }
@@ -618,15 +618,15 @@ impl BlockChainClient for Client {
618618 let queue_size = self . queue_transactions . load ( AtomicOrdering :: Relaxed ) ;
619619 ctrace ! ( EXTERNAL_PARCEL , "Queue size: {}" , queue_size) ;
620620 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( ) ) ;
622622 } else {
623623 let len = transactions. len ( ) ;
624624 match self . io_channel . lock ( ) . send ( ClientIoMessage :: NewTransactions ( transactions, peer_id) ) {
625625 Ok ( _) => {
626626 self . queue_transactions . fetch_add ( len, AtomicOrdering :: SeqCst ) ;
627627 }
628628 Err ( e) => {
629- debug ! ( "Ignoring {} transactions: error queueing: {}" , len, e) ;
629+ cwarn ! ( EXTERNAL_PARCEL , "Ignoring {} transactions: error queueing: {}" , len, e) ;
630630 }
631631 }
632632 }
@@ -793,7 +793,7 @@ impl ImportSealedBlock for Client {
793793 let header = block. header ( ) . clone ( ) ;
794794
795795 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) ;
797797 route
798798 } ;
799799 let ( enacted, retracted) = self . importer . calculate_enacted_retracted ( & [ route] ) ;
0 commit comments