@@ -525,7 +525,7 @@ process_remote_commit(StringInfo in)
525525 {
526526 case PGLOGICAL_COMMIT :
527527 {
528- MTM_LOG1 ("%d: PGLOGICAL_COMMIT commit" , MyProcPid );
528+ MTM_LOG2 ("%d: PGLOGICAL_COMMIT commit" , MyProcPid );
529529 if (IsTransactionState ()) {
530530 Assert (TransactionIdIsValid (MtmGetCurrentTransactionId ()));
531531 MtmBeginSession ();
@@ -542,7 +542,7 @@ process_remote_commit(StringInfo in)
542542 AbortCurrentTransaction ();
543543 } else {
544544 /* 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 );
546546 BeginTransactionBlock ();
547547 CommitTransactionCommand ();
548548 StartTransactionCommand ();
@@ -568,7 +568,7 @@ process_remote_commit(StringInfo in)
568568 Assert (!TransactionIdIsValid (MtmGetCurrentTransactionId ()));
569569 csn = pq_getmsgint64 (in );
570570 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 );
572572 StartTransactionCommand ();
573573 MtmBeginSession ();
574574 MtmSetCurrentTransactionCSN (csn );
@@ -581,7 +581,7 @@ process_remote_commit(StringInfo in)
581581 {
582582 Assert (!TransactionIdIsValid (MtmGetCurrentTransactionId ()));
583583 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 );
585585 if (MtmExchangeGlobalTransactionStatus (gid , TRANSACTION_STATUS_ABORTED ) == TRANSACTION_STATUS_UNKNOWN ) {
586586 MTM_LOG1 ("%ld: PGLOGICAL_ABORT_PREPARED commit: gid=%s #2" , MtmGetSystemTime (), gid );
587587 StartTransactionCommand ();
0 commit comments