Merge pull request #44957 from vitlibar/increase-log-level-of-tables-dependency-graph

Up the log level of tables dependencies graphs
This commit is contained in:
Alexey Milovidov 2023-01-06 05:46:39 +03:00 committed by GitHub
commit 1b1a13a9ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -715,7 +715,7 @@ void TablesDependencyGraph::log() const
{
if (nodes.empty())
{
LOG_TEST(getLogger(), "No tables");
LOG_TRACE(getLogger(), "No tables");
return;
}
@ -727,7 +727,7 @@ void TablesDependencyGraph::log() const
String level_desc = (node->level == CYCLIC_LEVEL) ? "cyclic" : fmt::format("level {}", node->level);
LOG_TEST(getLogger(), "Table {} has {} ({})", node->storage_id, dependencies_desc, level_desc);
LOG_TRACE(getLogger(), "Table {} has {} ({})", node->storage_id, dependencies_desc, level_desc);
}
}