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