Skip to content

Commit

Permalink
Merge pull request #1997 from kuzudb/testing-log-fix
Browse files Browse the repository at this point in the history
Fix test logging level
  • Loading branch information
acquamarin committed Sep 7, 2023
2 parents 9fe713e + 8596af9 commit d03d306
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/graph_test/graph_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "binder/binder.h"
#include "common/string_utils.h"
#include "parser/parser.h"
#include "spdlog/spdlog.h"
#include "storage/storage_manager.h"

using ::testing::Test;
Expand Down Expand Up @@ -162,6 +163,7 @@ void BaseGraphTest::createDBAndConn() {
}
database = std::make_unique<main::Database>(databasePath, *systemConfig);
conn = std::make_unique<main::Connection>(database.get());
spdlog::set_level(spdlog::level::info);
}

void BaseGraphTest::initGraph() {
Expand Down

0 comments on commit d03d306

Please sign in to comment.