diff options
author | Roman Udovichenko <rvu@ydb.tech> | 2025-04-07 15:59:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-07 12:59:34 +0000 |
commit | 8f3a9de2105706f8728f66f9cbf9ce67138acdf3 (patch) | |
tree | a13670e4a1d0d219397d8e55a5348bab3bcdaec0 | |
parent | d56beea89e609bb6d1f07146d1e4de4bc1e60185 (diff) | |
download | ydb-8f3a9de2105706f8728f66f9cbf9ce67138acdf3.tar.gz |
Use INFO log level by default in dqrun (#16851)
-rw-r--r-- | ydb/library/yql/tools/dqrun/lib/dqrun_lib.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/library/yql/tools/dqrun/lib/dqrun_lib.cpp b/ydb/library/yql/tools/dqrun/lib/dqrun_lib.cpp index 35cf5f57ae..98e0b6e5c0 100644 --- a/ydb/library/yql/tools/dqrun/lib/dqrun_lib.cpp +++ b/ydb/library/yql/tools/dqrun/lib/dqrun_lib.cpp @@ -90,6 +90,7 @@ TDqRunTool::TDqRunTool() GetRunOptions().ResultStream = &Cout; GetRunOptions().ResultsFormat = NYson::EYsonFormat::Text; GetRunOptions().CustomTests = true; + GetRunOptions().Verbosity = TLOG_INFO; GetRunOptions().AddOptExtension([this](NLastGetopt::TOpts& opts) { |