From 8596af9427b68e72c4ee8102f7426553d30e9a89 Mon Sep 17 00:00:00 2001 From: ziyi chen Date: Wed, 6 Sep 2023 20:24:44 -0400 Subject: [PATCH] Fix test logging level --- test/graph_test/graph_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/graph_test/graph_test.cpp b/test/graph_test/graph_test.cpp index fbdf8ffe5c..3154cd9b0f 100644 --- a/test/graph_test/graph_test.cpp +++ b/test/graph_test/graph_test.cpp @@ -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; @@ -162,6 +163,7 @@ void BaseGraphTest::createDBAndConn() { } database = std::make_unique(databasePath, *systemConfig); conn = std::make_unique(database.get()); + spdlog::set_level(spdlog::level::info); } void BaseGraphTest::initGraph() {