MagAO-X
|
||||
|
Namespaces | |
logPrio | |
The log priority codes. These control if logs are stored on disk and how they are presented to users. | |
Classes | |
class | logHeader |
The log entry header. More... | |
struct | timespecX |
A fixed-width timespec structure. More... | |
Typedefs | |
typedef int8_t | logPrioT |
The type of the log priority code. More... | |
typedef uint32_t | secT |
The type used for seconds. More... | |
typedef uint32_t | nanosecT |
The type used for nanoseconds. More... | |
typedef uint16_t | eventCodeT |
The type of an event code (16-bit unsigned int). More... | |
typedef uint8_t | msgLen0T |
The type used for the short message length. More... | |
typedef uint16_t | msgLen1T |
The type used for intermediate message length. More... | |
typedef uint64_t | msgLen2T |
The type used for long message length. More... | |
typedef msgLen2T | msgLenT |
The type used to refer to the message length, regardless of length. More... | |
typedef std::shared_ptr< char > | bufferPtrT |
The log entry buffer smart pointer. More... | |
Functions | |
std::string | priorityString (logPrioT &prio) |
Get the string representation of a log priority. More... | |
logPrioT | logLevelFromString (const std::string &str) |
Get the log priority from a string, which might have the number or the name. More... | |
template<typename logT > | |
void | stdFormat (bufferPtrT &logBuffer) |
Worker function that formats a log into the standard text representation. More... | |
void | timespecFromX (timespec &ts, const timespecX &tsX) |
Convert a timespecX to a native timespec. More... | |
template<clockid_t clk_id = CLOCK_REALTIME> | |
void | clock_gettimeX (timespecX &tsX) |
Fill in a timespecX with the current time. More... | |
typedef uint32_t flatlogs::nanosecT |
The type used for nanoseconds.
Rationale: unsigned 32 bits gives >4x10^9 nanoseconds, so enough for 1x10^9 nanoseconds.
Definition at line 32 of file logDefs.hpp.
logPrioT flatlogs::logLevelFromString | ( | const std::string & | str | ) |
Get the log priority from a string, which might have the number or the name.
Evaluates the input string to find the closest match to the log level names. If the first non-whitespace character is a digit, then the string is treated as an integer and converted. If the first non-whitespace character is not a digit, then the string is converted to upper case and the log level is determined using the minimum number of characters. That is
Definition at line 119 of file logPriority.hpp.
Referenced by MagAOX::logger::logManager< logFileT >::loadConfig().