#include <algorithm>
#include <atomic>
#include <cerrno>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>
#include <string_view>
#include <system_error>
#include <vector>
#include <cstdint>
Go to the source code of this file.
|
| #define | CH_LOG(level, message) |
| |
◆ CH_LOG
| #define CH_LOG |
( |
|
level, |
|
|
|
message |
|
) |
| |
Value: do { \
std::ostringstream _ch_log_ss; \
_ch_log_ss << message; \
ch_log_impl(level, _ch_log_ss.str(), __FILE__, __LINE__, \
__func__); \
} \
} while (0)
bool ch_should_log(const char *level)
Definition logging.hpp:66
◆ ch_log_impl()
| void ch_log_impl |
( |
const char * |
level, |
|
|
const std::string & |
msg, |
|
|
const char * |
file, |
|
|
int |
line, |
|
|
const char * |
func |
|
) |
| |
|
inline |
◆ ch_severity_for_tag()
◆ ch_should_log()
| bool ch_should_log |
( |
const char * |
level | ) |
|
|
inline |