summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-05-12 14:03:47 +0300
committerhiddenpath <[email protected]>2025-05-12 14:25:42 +0300
commitbe34d1eaf6dd1dcbda75a453d26dcd49cd51526e (patch)
tree49925d32efc693e001f1e4d05364eb0bef95be3c
parent548b750f67e221ea68eeb4b01bf2dca42b53fbf9 (diff)
YT-23645: Enable yt/core logger as default
commit_hash:e2d621c2e844e927b6ed8188d628e3207441352f
-rw-r--r--yt/cpp/mapreduce/interface/config.cpp2
-rw-r--r--yt/cpp/mapreduce/interface/config.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/yt/cpp/mapreduce/interface/config.cpp b/yt/cpp/mapreduce/interface/config.cpp
index b28db2bf6bb..cdabeaf3240 100644
--- a/yt/cpp/mapreduce/interface/config.cpp
+++ b/yt/cpp/mapreduce/interface/config.cpp
@@ -198,7 +198,7 @@ void TConfig::Reset()
ApiVersion = GetEnv("YT_VERSION", "v3");
LogLevel = GetEnv("YT_LOG_LEVEL", "error");
LogPath = GetEnv("YT_LOG_PATH");
- LogUseCore = GetBool("YT_LOG_USE_CORE", false);
+ LogUseCore = GetBool("YT_LOG_USE_CORE", true);
StructuredLog = GetEnv("YT_STRUCTURED_LOG");
HttpProxyRole = GetEnv("YT_HTTP_PROXY_ROLE");
diff --git a/yt/cpp/mapreduce/interface/config.h b/yt/cpp/mapreduce/interface/config.h
index 840e51c2e02..e2ef370b6de 100644
--- a/yt/cpp/mapreduce/interface/config.h
+++ b/yt/cpp/mapreduce/interface/config.h
@@ -112,7 +112,7 @@ struct TConfig
/// This is temporary option. In future it would be true by default, and then removed.
///
/// https://st.yandex-team.ru/YT-23645
- bool LogUseCore = false;
+ bool LogUseCore = true;
// Compression for data that is sent to YT cluster.
EEncoding ContentEncoding;