autotier
Automatic Tiering Fuse Filesystem
|
38 enum log_level_t { NONE, NORMAL, DEBUG };
59 void message(
const std::string &msg, log_level_t lvl)
const;
66 void warning(
const std::string &msg)
const;
73 void error(
const std::string &msg)
const;
107 double format_bytes(uintmax_t bytes, std::string &unit)
const;
Namespace for containing a global instance of a Logger object.
Definition: alert.cpp:31
output_t
Whether to print to stdout/stderr or the syslog.
Definition: alert.hpp:34
~Logger(void)
Destroy the Logger object Close syslog if output_ == SYSLOG.
Definition: alert.cpp:43
Logger(log_level_t log_level, output_t output=STD)
Construct a new Logger object.
Definition: alert.cpp:35
void message(const std::string &msg, log_level_t lvl) const
Print message if lvl >= log_level_. Use this for regular informational log messages.
Definition: alert.cpp:48
std::string format_bytes(uintmax_t bytes) const
Return bytes as string in base-1024 SI units. Deprecated in favour of ffd::Bytes::get_str() from lib4...
Definition: alert.cpp:101
Logger log(Logger::log_level_t::NORMAL)
Global Logger object. Use Logging::log.<method> in source files including this header.
Definition: alert.hpp:129
output_t output_
Whether to output to stdout (STD) or syslog (SYSLOG)
Definition: alert.hpp:116
Class to print logs to either stdout/stderr or the syslog.
Definition: alert.hpp:28
void warning(const std::string &msg) const
Print message (to stderr if output_ == STD) prepended with "Warning: ". Use this for non-fatal errors...
Definition: alert.cpp:61
@ STD
Print to stdout/stderr.
Definition: alert.hpp:35
log_level_t log_level_
Value from config file. Each log message passes a log level to check against this number....
Definition: alert.hpp:115
void set_output(output_t output)
Set which type of logging to do. If switching from STD to SYSLOG, open the log. If switching from SYS...
Definition: alert.cpp:87
@ SYSLOG
Print to syslog.
Definition: alert.hpp:36
void error(const std::string &msg) const
Print message (to stderr if output_ == STD) prepended with "Error: ". Use this for fatal errors.
Definition: alert.cpp:72
void set_level(log_level_t log_level)
Set the log_level_ member to log_level.
Definition: alert.cpp:83