@@ -1007,7 +1007,7 @@ MtmCommitPreparedTransaction(MtmCurrentTrans* x)
1007
1007
int result = 0 ;
1008
1008
1009
1009
Assert (tm -> state != NULL );
1010
- MTM_LOG1 ("Commit prepared transaction %d with gid='%s'" , x -> xid , x -> gid );
1010
+ MTM_LOG3 ("Commit prepared transaction %d with gid='%s'" , x -> xid , x -> gid );
1011
1011
ts = tm -> state ;
1012
1012
1013
1013
Assert (MtmIsCoordinator (ts ));
@@ -1084,7 +1084,7 @@ MtmAbortPreparedTransaction(MtmCurrentTrans* x)
1084
1084
static void
1085
1085
MtmEndTransaction (MtmCurrentTrans * x , bool commit )
1086
1086
{
1087
- MTM_LOG1 ("%d: End transaction %d, prepared=%d, replicated=%d, distributed=%d, 2pc=%d, gid=%s -> %s" ,
1087
+ MTM_LOG3 ("%d: End transaction %d, prepared=%d, replicated=%d, distributed=%d, 2pc=%d, gid=%s -> %s" ,
1088
1088
MyProcPid , x -> xid , x -> isPrepared , x -> isReplicated , x -> isDistributed , x -> isTwoPhase , x -> gid , commit ? "commit" : "abort" );
1089
1089
if (x -> status != TRANSACTION_STATUS_ABORTED && x -> isDistributed && (x -> isPrepared || x -> isReplicated ) && !x -> isTwoPhase ) {
1090
1090
MtmTransState * ts = NULL ;
@@ -1225,7 +1225,7 @@ void MtmBroadcastPollMessage(MtmTransState* ts)
1225
1225
if (i + 1 != MtmNodeId && BIT_CHECK (ts -> participantsMask & ~Mtm -> disabledNodeMask , i ))
1226
1226
{
1227
1227
msg .node = i + 1 ;
1228
- MTM_LOG1 ("Send request for transaction %s to node %d" , msg .gid , msg .node );
1228
+ MTM_LOG3 ("Send request for transaction %s to node %d" , msg .gid , msg .node );
1229
1229
MtmSendMessage (& msg );
1230
1230
}
1231
1231
}
@@ -3837,7 +3837,7 @@ static bool MtmProcessDDLCommand(char const* queryString, bool transactional)
3837
3837
queryWithContext = (char * ) queryString ;
3838
3838
}
3839
3839
3840
- MTM_LOG1 ("Sending utility: %s" , queryWithContext );
3840
+ MTM_LOG3 ("Sending utility: %s" , queryWithContext );
3841
3841
if (transactional )
3842
3842
/* DDL */
3843
3843
LogLogicalMessage ("D" , queryWithContext , strlen (queryWithContext ) + 1 , true);
0 commit comments