aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/logging/yt_log.cpp
diff options
context:
space:
mode:
authorvadim-xd <vadim-xd@yandex-team.com>2024-12-17 12:09:17 +0300
committervadim-xd <vadim-xd@yandex-team.com>2024-12-17 12:35:32 +0300
commitf32d21718185bebaf27b832f94f21c02825660b3 (patch)
tree13f0550f441b64b947b5e77e8e5959bc7a9273ae /yt/cpp/mapreduce/interface/logging/yt_log.cpp
parentef547e050181b3f6fc77ee0e0e1956ef316861e0 (diff)
downloadydb-f32d21718185bebaf27b832f94f21c02825660b3.tar.gz
Fix -Wunused-parameter in y*
TRIVIAL commit_hash:f55dc23fb741393c444b088024393fa452d06795
Diffstat (limited to 'yt/cpp/mapreduce/interface/logging/yt_log.cpp')
-rw-r--r--yt/cpp/mapreduce/interface/logging/yt_log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/interface/logging/yt_log.cpp b/yt/cpp/mapreduce/interface/logging/yt_log.cpp
index 6c464d48ac..1db626adb0 100644
--- a/yt/cpp/mapreduce/interface/logging/yt_log.cpp
+++ b/yt/cpp/mapreduce/interface/logging/yt_log.cpp
@@ -92,7 +92,7 @@ private:
}
}
- static void LogMessage(const ILoggerPtr& logger, ILogger::ELevel level, const ::TSourceLocation& sourceLocation, const char* format, ...)
+ static void LogMessage(const ILoggerPtr& /* logger */, ILogger::ELevel level, const ::TSourceLocation& sourceLocation, const char* format, ...)
{
va_list args;
va_start(args, format);