#include <atomic>
#include <chrono>
#include <fstream>
#include <iostream>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <utility>
#include "absl/strings/str_format.h"
#include "absl/strings/str_cat.h"
#include "core/features.h"
#include "absl/strings/string_view.h"
Go to the source code of this file.
|
| namespace | yaze |
| | Main namespace for the application.
|
| |
| namespace | yaze::util |
| |
|
| #define | LOG(level, category, format, ...) |
| |
| #define | LOG_DEBUG(category, format, ...) LOG(yaze::util::LogLevel::YAZE_DEBUG, category, format, ##__VA_ARGS__) |
| |
| #define | LOG_INFO(category, format, ...) LOG(yaze::util::LogLevel::INFO, category, format, ##__VA_ARGS__) |
| |
| #define | LOG_WARN(category, format, ...) LOG(yaze::util::LogLevel::WARNING, category, format, ##__VA_ARGS__) |
| |
| #define | LOG_ERROR(category, format, ...) LOG(yaze::util::LogLevel::ERROR, category, format, ##__VA_ARGS__) |
| |
| #define | LOG_FATAL(category, format, ...) LOG(yaze::util::LogLevel::FATAL, category, format, ##__VA_ARGS__) |
| |
◆ LOG
| #define LOG |
( |
|
level, |
|
|
|
category, |
|
|
|
format, |
|
|
|
... |
|
) |
| |
Value: do { \
yaze::util::LogManager::instance().log( \
level, category, absl::StrFormat(format, ##__VA_ARGS__)); \
} while (0)
Definition at line 98 of file log.h.
◆ LOG_DEBUG
◆ LOG_INFO
◆ LOG_WARN
◆ LOG_ERROR
◆ LOG_FATAL