Skip to content

Commit

Permalink
Reduce logs (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
shosseinimotlagh authored Oct 23, 2024
1 parent 9a06c05 commit 634047c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.4.66"
version = "6.4.67"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
5 changes: 3 additions & 2 deletions src/tests/test_index_crash_recovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,9 @@ struct IndexCrashTest : public test_common::HSTestHelper, BtreeTestHelper< TestT
req.enable_route_tracing();
const auto ret = this->m_bt->get(req);
ASSERT_EQ(ret, btree_status_t::success) << "Missing key " << key << " in btree but present in shadow map";
LOGINFO("{} - Key {} passed sanity check!", count++, key.key());
});
LOGINFO("Sanity check passed for {} keys!", count);

}

void crash_and_recover(OperationList& operations, std::string filename = "") {
Expand Down Expand Up @@ -439,7 +440,7 @@ struct IndexCrashTest : public test_common::HSTestHelper, BtreeTestHelper< TestT
std::string re_filename = filename + "_after_reapply.dot";
LOGINFO("Visualize the tree after reapply {}", re_filename);
this->visualize_keys(re_filename);
this->print_keys("Post crash and recovery, btree structure: ");
// this->print_keys("Post crash and recovery, btree structure: ");
}

this->get_all();
Expand Down

0 comments on commit 634047c

Please sign in to comment.