Skip to content

Commit 8817f7d

Browse files
committed
fix(limestone): change log level from log_debug to log_trace
Update log output level for backup progress and replica existence checks from log_debug to log_trace for more detailed tracing.
1 parent 68a9228 commit 8817f7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/limestone/datastore_impl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ void datastore_impl::decrement_backup_counter() noexcept {
7373
// Returns true if a backup operation is in progress.
7474
bool datastore_impl::is_backup_in_progress() const noexcept {
7575
int count = backup_counter_.load(std::memory_order_acquire);
76-
VLOG_LP(log_debug) << "Checking if backup is in progress; active backup count: " << count;
76+
VLOG_LP(log_trace) << "Checking if backup is in progress; active backup count: " << count;
7777
return count > 0;
7878
}
7979

8080
// Returns true if a replica exists.
8181
bool datastore_impl::has_replica() const noexcept {
8282
bool exists = replica_exists_.load(std::memory_order_acquire);
83-
VLOG_LP(log_debug) << "Checking replica existence; replica exists: " << exists;
83+
VLOG_LP(log_trace) << "Checking replica existence; replica exists: " << exists;
8484
return exists;
8585
}
8686

0 commit comments

Comments
 (0)