Skip to content

Commit

Permalink
[BACKPORT 2.16][#15952] YSQL: Reduce verbosity of a Postgres log line…
Browse files Browse the repository at this point in the history
… in read committed isolation level codepath

Summary: Original commit: dd239e4 / D22755

Test Plan: Jenkins

Reviewers: mihnea, yguan

Reviewed By: mihnea, yguan

Subscribers: mihnea, yql

Differential Revision: https://phabricator.dev.yugabyte.com/D22776
  • Loading branch information
pkj415 committed Feb 28, 2023
1 parent 5b021a8 commit f1fb2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/postgres/src/backend/utils/time/snapmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ GetTransactionSnapshot(void)
*/
if (IsYBReadCommitted() && YBGetDdlNestingLevel() == 0)
{
elog(LOG, "Resetting read point for statement in Read Committed txn");
elog(DEBUG2, "Resetting read point for statement in Read Committed txn");
HandleYBStatus(YBCPgFlushBufferedOperations());
HandleYBStatus(YBCPgResetTransactionReadPoint());
}
Expand Down

0 comments on commit f1fb2c7

Please sign in to comment.