@@ -525,7 +525,7 @@ process_remote_commit(StringInfo in)
525
525
{
526
526
case PGLOGICAL_COMMIT :
527
527
{
528
- MTM_LOG1 ("%d: PGLOGICAL_COMMIT commit" , MyProcPid );
528
+ MTM_LOG2 ("%d: PGLOGICAL_COMMIT commit" , MyProcPid );
529
529
if (IsTransactionState ()) {
530
530
Assert (TransactionIdIsValid (MtmGetCurrentTransactionId ()));
531
531
MtmBeginSession ();
@@ -542,7 +542,7 @@ process_remote_commit(StringInfo in)
542
542
AbortCurrentTransaction ();
543
543
} else {
544
544
/* prepare TBLOCK_INPROGRESS state for PrepareTransactionBlock() */
545
- MTM_LOG1 ("%ld: PGLOGICAL_PREPARE commit: gid=%s" , MtmGetSystemTime (), gid );
545
+ MTM_LOG2 ("%ld: PGLOGICAL_PREPARE commit: gid=%s" , MtmGetSystemTime (), gid );
546
546
BeginTransactionBlock ();
547
547
CommitTransactionCommand ();
548
548
StartTransactionCommand ();
@@ -568,7 +568,7 @@ process_remote_commit(StringInfo in)
568
568
Assert (!TransactionIdIsValid (MtmGetCurrentTransactionId ()));
569
569
csn = pq_getmsgint64 (in );
570
570
gid = pq_getmsgstring (in );
571
- MTM_LOG1 ("%ld: PGLOGICAL_COMMIT_PREPARED commit: csn=%ld, gid=%s" , MtmGetSystemTime (), csn , gid );
571
+ MTM_LOG2 ("%ld: PGLOGICAL_COMMIT_PREPARED commit: csn=%ld, gid=%s" , MtmGetSystemTime (), csn , gid );
572
572
StartTransactionCommand ();
573
573
MtmBeginSession ();
574
574
MtmSetCurrentTransactionCSN (csn );
@@ -581,7 +581,7 @@ process_remote_commit(StringInfo in)
581
581
{
582
582
Assert (!TransactionIdIsValid (MtmGetCurrentTransactionId ()));
583
583
gid = pq_getmsgstring (in );
584
- MTM_LOG1 ("%ld: PGLOGICAL_ABORT_PREPARED commit: gid=%s" , MtmGetSystemTime (), gid );
584
+ MTM_LOG2 ("%ld: PGLOGICAL_ABORT_PREPARED commit: gid=%s" , MtmGetSystemTime (), gid );
585
585
if (MtmExchangeGlobalTransactionStatus (gid , TRANSACTION_STATUS_ABORTED ) == TRANSACTION_STATUS_UNKNOWN ) {
586
586
MTM_LOG1 ("%ld: PGLOGICAL_ABORT_PREPARED commit: gid=%s #2" , MtmGetSystemTime (), gid );
587
587
StartTransactionCommand ();
0 commit comments