@@ -141,15 +141,15 @@ export class RunsReplicationService {
141
141
} ) ;
142
142
143
143
this . _replicationClient . events . on ( "start" , ( ) => {
144
- this . logger . debug ( "Replication client started" ) ;
144
+ this . logger . info ( "Replication client started" ) ;
145
145
} ) ;
146
146
147
147
this . _replicationClient . events . on ( "acknowledge" , ( { lsn } ) => {
148
148
this . logger . debug ( "Acknowledged" , { lsn } ) ;
149
149
} ) ;
150
150
151
151
this . _replicationClient . events . on ( "leaderElection" , ( isLeader ) => {
152
- this . logger . debug ( "Leader election" , { isLeader } ) ;
152
+ this . logger . info ( "Leader election" , { isLeader } ) ;
153
153
} ) ;
154
154
}
155
155
@@ -360,7 +360,7 @@ export class RunsReplicationService {
360
360
} )
361
361
. end ( ) ;
362
362
363
- this . logger . debug ( "handle_transaction" , {
363
+ this . logger . info ( "handle_transaction" , {
364
364
transaction : {
365
365
xid : transaction . xid ,
366
366
commitLsn : transaction . commitLsn ,
@@ -395,7 +395,7 @@ export class RunsReplicationService {
395
395
this . _lastAcknowledgedAt = now ;
396
396
this . _lastAcknowledgedLsn = this . _latestCommitEndLsn ;
397
397
398
- this . logger . debug ( "acknowledge_latest_transaction" , {
398
+ this . logger . info ( "acknowledge_latest_transaction" , {
399
399
commitEndLsn : this . _latestCommitEndLsn ,
400
400
lastAcknowledgedAt : this . _lastAcknowledgedAt ,
401
401
} ) ;
@@ -764,7 +764,7 @@ export class ConcurrentFlushScheduler<T> {
764
764
span . setAttribute ( "concurrency_pending_count" , this . concurrencyLimiter . pendingCount ) ;
765
765
span . setAttribute ( "concurrency_concurrency" , this . concurrencyLimiter . concurrency ) ;
766
766
767
- this . logger . debug ( "flush_next_batch" , {
767
+ this . logger . info ( "flush_next_batch" , {
768
768
batchId,
769
769
batchSize : batch . length ,
770
770
concurrencyActiveCount : this . concurrencyLimiter . activeCount ,
@@ -796,7 +796,7 @@ export class ConcurrentFlushScheduler<T> {
796
796
797
797
this . failedBatchCount ++ ;
798
798
} else {
799
- this . logger . debug ( "flush_batch_complete" , {
799
+ this . logger . info ( "flush_batch_complete" , {
800
800
totalBatches : 1 ,
801
801
successfulBatches : 1 ,
802
802
failedBatches : 0 ,
0 commit comments