mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 10:25:47 +02:00
chore: adjust verbosity level 1 not be over-verbose in prod (#1974)
Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
43d55fa6d7
commit
4be9551806
5 changed files with 20 additions and 21 deletions
|
@ -2170,7 +2170,7 @@ error_code RdbLoaderBase::HandleJournalBlob(Service* service) {
|
|||
return RdbError(errc::unsupported_operation);
|
||||
}
|
||||
|
||||
VLOG(1) << "Executing item: " << entry.ToString();
|
||||
DVLOG(2) << "Executing item: " << entry.ToString();
|
||||
ex.Execute(entry.dbid, entry.cmd);
|
||||
}
|
||||
|
||||
|
@ -2333,7 +2333,7 @@ error_code RdbLoader::LoadKeyValPair(int type, ObjSettings* settings) {
|
|||
* assume to work in an exact keyspace state. */
|
||||
|
||||
if (ServerState::tlocal()->is_master && settings->has_expired) {
|
||||
VLOG(1) << "Expire key: " << item->key;
|
||||
VLOG(2) << "Expire key: " << item->key;
|
||||
return kOk;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue