File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,14 +73,14 @@ void datastore_impl::decrement_backup_counter() noexcept {
7373// Returns true if a backup operation is in progress.
7474bool 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.
8181bool 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
You can’t perform that action at this time.
0 commit comments