#include <cuml/common/log_levels.hpp>
#include <stdarg.h>
#include <memory>
#include <mutex>
#include <sstream>
#include <string>
Go to the source code of this file.
|
#define | CUML_LOG_TRACE(fmt, ...) |
|
#define | CUML_LOG_DEBUG(fmt, ...) |
|
#define | CUML_LOG_INFO(fmt, ...) ML::Logger::get().log(CUML_LEVEL_INFO, fmt, ##__VA_ARGS__) |
|
#define | CUML_LOG_WARN(fmt, ...) ML::Logger::get().log(CUML_LEVEL_WARN, fmt, ##__VA_ARGS__) |
|
#define | CUML_LOG_ERROR(fmt, ...) ML::Logger::get().log(CUML_LEVEL_ERROR, fmt, ##__VA_ARGS__) |
|
#define | CUML_LOG_CRITICAL(fmt, ...) ML::Logger::get().log(CUML_LEVEL_CRITICAL, fmt, ##__VA_ARGS__) |
|