Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit d922e44

Browse files
author
Ziqi Wang
committed
Revert log debug to log trace
1 parent 4267752 commit d922e44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index/bwtree_index.cpp

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool BWTREE_INDEX_TYPE::InsertEntry(const storage::Tuple *key,
6565
}
6666

6767
// NOTE: If I use index_key.GetInfo() here, I always get an empty key?
68-
LOG_DEBUG("InsertEntry(key=%s, val=%s) [%s]",
68+
LOG_TRACE("InsertEntry(key=%s, val=%s) [%s]",
6969
key->GetInfo().c_str(),
7070
IndexUtil::GetInfo(value).c_str(),
7171
(ret ? "SUCCESS" : "FAIL"));
@@ -95,7 +95,7 @@ bool BWTREE_INDEX_TYPE::DeleteEntry(const storage::Tuple *key,
9595
delete_count, metadata);
9696
}
9797

98-
LOG_DEBUG("DeleteEntry(key=%s, val=%s) [%s]",
98+
LOG_TRACE("DeleteEntry(key=%s, val=%s) [%s]",
9999
key->GetInfo().c_str(),
100100
IndexUtil::GetInfo(value).c_str(),
101101
(ret ? "SUCCESS" : "FAIL"));

0 commit comments

Comments
 (0)