1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-06-20 01:17:49 +02:00

Lower log level of backupDbPing()/dbPing() to trace.

These functions get called very frequently even though they generally result in a noop at the protocol level.

Lower the log level to reduce noise in the log at debug level.
This commit is contained in:
David Steele
2025-01-28 15:30:23 -05:00
parent e625ed8be2
commit e46374dc7d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1774,7 +1774,7 @@ Check that the clusters are alive and correctly configured during the backup
static void
backupDbPing(const BackupData *const backupData, const bool force)
{
FUNCTION_LOG_BEGIN(logLevelDebug);
FUNCTION_LOG_BEGIN(logLevelTrace);
FUNCTION_LOG_PARAM(BACKUP_DATA, backupData);
FUNCTION_LOG_PARAM(BOOL, force);
FUNCTION_LOG_END();
+1 -1
View File
@@ -740,7 +740,7 @@ dbReplayWait(Db *const this, const String *const targetLsn, const uint32_t targe
FN_EXTERN void
dbPing(Db *const this, const bool force)
{
FUNCTION_LOG_BEGIN(logLevelDebug);
FUNCTION_LOG_BEGIN(logLevelTrace);
FUNCTION_LOG_PARAM(DB, this);
FUNCTION_LOG_PARAM(BOOL, force);
FUNCTION_LOG_END();