2015-09-29 19:21:02 +00:00
|
|
|
#pragma once
|
2017-02-02 14:19:13 +00:00
|
|
|
|
|
|
|
/// Macros for convenient usage of Poco logger.
|
2015-09-29 19:21:02 +00:00
|
|
|
|
2020-05-22 10:58:29 +00:00
|
|
|
#include <fmt/format.h>
|
2015-09-29 19:21:02 +00:00
|
|
|
#include <Poco/Logger.h>
|
2019-07-10 12:19:17 +00:00
|
|
|
#include <Poco/Message.h>
|
2019-07-09 10:39:05 +00:00
|
|
|
#include <Common/CurrentThread.h>
|
2015-09-29 19:21:02 +00:00
|
|
|
|
|
|
|
|
2020-05-29 00:09:12 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
template <typename... Ts> constexpr size_t numArgs(Ts &&...) { return sizeof...(Ts); }
|
|
|
|
template <typename T, typename... Ts> constexpr auto firstArg(T && x, Ts &&...) { return std::forward<T>(x); }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-29 19:21:02 +00:00
|
|
|
/// Logs a message to a specified logger with that level.
|
2020-05-29 00:09:12 +00:00
|
|
|
/// If more than one argument is provided,
|
|
|
|
/// the first argument is interpreted as template with {}-substitutions
|
|
|
|
/// and the latter arguments treat as values to substitute.
|
|
|
|
/// If only one argument is provided, it is threat as message without substitutions.
|
2015-09-29 19:21:02 +00:00
|
|
|
|
2020-05-29 00:09:12 +00:00
|
|
|
#define LOG_IMPL(logger, priority, PRIORITY, ...) do \
|
2020-05-22 10:58:29 +00:00
|
|
|
{ \
|
2020-05-30 21:57:37 +00:00
|
|
|
const bool is_clients_log = (DB::CurrentThread::getGroup() != nullptr) && \
|
|
|
|
(DB::CurrentThread::getGroup()->client_logs_level >= (priority)); \
|
2020-05-22 10:58:29 +00:00
|
|
|
if ((logger)->is((PRIORITY)) || is_clients_log) \
|
|
|
|
{ \
|
2020-05-29 00:09:12 +00:00
|
|
|
std::string formatted_message = numArgs(__VA_ARGS__) > 1 ? fmt::format(__VA_ARGS__) : firstArg(__VA_ARGS__); \
|
2020-05-22 10:58:29 +00:00
|
|
|
if (auto channel = (logger)->getChannel()) \
|
|
|
|
{ \
|
|
|
|
std::string file_function; \
|
|
|
|
file_function += __FILE__; \
|
|
|
|
file_function += "; "; \
|
|
|
|
file_function += __PRETTY_FUNCTION__; \
|
2020-05-30 21:57:37 +00:00
|
|
|
Poco::Message poco_message((logger)->name(), formatted_message, \
|
2020-05-22 10:58:29 +00:00
|
|
|
(PRIORITY), file_function.c_str(), __LINE__); \
|
|
|
|
channel->log(poco_message); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (false)
|
|
|
|
|
|
|
|
|
2020-05-30 21:57:37 +00:00
|
|
|
#define LOG_TRACE(logger, ...) LOG_IMPL(logger, DB::LogsLevel::trace, Poco::Message::PRIO_TRACE, __VA_ARGS__)
|
|
|
|
#define LOG_DEBUG(logger, ...) LOG_IMPL(logger, DB::LogsLevel::debug, Poco::Message::PRIO_DEBUG, __VA_ARGS__)
|
|
|
|
#define LOG_INFO(logger, ...) LOG_IMPL(logger, DB::LogsLevel::information, Poco::Message::PRIO_INFORMATION, __VA_ARGS__)
|
|
|
|
#define LOG_WARNING(logger, ...) LOG_IMPL(logger, DB::LogsLevel::warning, Poco::Message::PRIO_WARNING, __VA_ARGS__)
|
|
|
|
#define LOG_ERROR(logger, ...) LOG_IMPL(logger, DB::LogsLevel::error, Poco::Message::PRIO_ERROR, __VA_ARGS__)
|
|
|
|
#define LOG_FATAL(logger, ...) LOG_IMPL(logger, DB::LogsLevel::error, Poco::Message::PRIO_FATAL, __VA_ARGS__)
|
2020-05-31 13:47:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// Compatibility for external projects.
|
|
|
|
#if defined(ARCADIA_BUILD)
|
|
|
|
using Poco::Logger;
|
|
|
|
using Poco::Message;
|
|
|
|
using DB::LogsLevel;
|
|
|
|
using DB::CurrentThread;
|
|
|
|
#endif
|