10 #ifndef logger_types_software_log_hpp 11 #define logger_types_software_log_hpp 40 const int32_t code_errno,
41 const int32_t code_other,
45 auto _file =
builder.CreateString(file);
46 auto _expl =
builder.CreateString(expl);
57 const int32_t code_errno,
58 const int32_t code_other,
59 const std::string & expl
62 auto _file =
builder.CreateString(file);
63 auto _expl =
builder.CreateString(expl);
72 const int32_t code_errno
75 auto _file =
builder.CreateString(file);
84 const int32_t code_errno,
88 auto _file =
builder.CreateString(file);
89 auto _expl =
builder.CreateString(expl);
98 const int32_t code_errno,
99 const std::string & expl
102 auto _file =
builder.CreateString(file);
103 auto _expl =
builder.CreateString(expl);
112 const std::string & expl
115 auto _file =
builder.CreateString(file);
116 auto _expl =
builder.CreateString(expl);
127 auto _file =
builder.CreateString(file);
143 static_cast<void>(len);
147 std::string ret =
"SW FILE: ";
148 ret += rgs->file()->c_str();
150 ret += mx::ioutils::convertToString(rgs->line());
154 ret += mx::ioutils::convertToString(rgs->errnoCode());
158 ret +=
" OTHER CODE: ";
159 ret += mx::ioutils::convertToString(rgs->otherCode());
162 if(rgs->explanation())
165 ret += rgs->explanation()->c_str();
272 #endif //logger_types_software_log_hpp Software ALERT log entry.
const MagAOX::logger::Software_log_fb * GetSoftware_log_fb(const void *buf)
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Base class for software logs.
static constexpr logPrioT LOG_WARNING
A condition has occurred which may become an error, but the process continues.
Software NOTICE log entry.
messageT(const char *file, const uint32_t line, const std::string &expl)
C'tor with no codes, just the explanation.
Software CRITICAL log entry.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const char *expl)
C'tor with full specification.
flatbuffers::Offset< Software_log_fb > CreateSoftware_log_fb(flatbuffers::FlatBufferBuilder &_fbb, flatbuffers::Offset< flatbuffers::String > file=0, uint32_t line=0, int32_t errnoCode=0, int32_t otherCode=0, flatbuffers::Offset< flatbuffers::String > explanation=0)
Software DEBUG2 log entry.
static constexpr logPrioT LOG_ERROR
An error has occured which the software will attempt to correct.
static constexpr logPrioT LOG_DEBUG2
Used for debugging, providing a 2nd level.
messageT(const char *file, const uint32_t line)
C'tor for a trace log, only the file and line.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const std::string &expl)
C'tor with full specification, overloaded for a std::string in explanation.
The MagAO-X logger flatbuffer log base type.
static const flatlogs::eventCodeT eventCode
The event code.
Base class for logs consisting of a flatbuffer message.
static constexpr flatlogs::eventCodeT SOFTWARE_LOG
int8_t logPrioT
The type of the log priority code.
static constexpr logPrioT LOG_ALERT
This should only be used if some action is required by operators to keep the system safe...
static constexpr logPrioT LOG_EMERGENCY
Normal operations of the entire system should be shut down immediately.
flatbuffers::FlatBufferBuilder builder
messageT(const char *file, const uint32_t line, const int32_t code_errno, const char *expl)
C'tor for errno with additional explanation.
messageT(const char *file, const uint32_t line, const int32_t code_errno)
C'tor for errno only – code explanation can be looked up later.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const std::string &expl)
C'tor for errno with additional explanation, std::string overload.
static constexpr logPrioT LOG_CRITICAL
The process can not continue and will shut down (fatal)
Software EMERGENCY log entry.
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Message type for resolving log messages with a f.b. builder.
static constexpr logPrioT LOG_DEBUG
Used for debugging.
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
static constexpr logPrioT LOG_NOTICE
A normal but significant condition.
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatted for human consumption.
Software DEBUG log entry.