ArmarXLog.cpp
Go to the documentation of this file.
1 #include "ArmarXLog.h"
2 
4 
5 namespace armarx::semantic
6 {
7 
8  void
9  ArmarXLog::setAsImplementation(const std::string& tag)
10  {
11  semrel::LogInterface::setImplementation(std::make_shared<ArmarXLog>(tag));
12  }
13 
14  ArmarXLog::ArmarXLog(const std::string& tag)
15  {
16  setTag(tag);
18  }
19 
20  void
21  ArmarXLog::log(semrel::LogMetaInfo info, const std::string& message)
22  {
23  (*loghelper(info.file.c_str(), info.line, info.func.c_str()))
24  << logLevelToMessageType(info.level) << message;
25  }
26 
28  ArmarXLog::logLevelToMessageType(semrel::LogLevel level)
29  {
30  switch (level)
31  {
32  case semrel::LogLevel::DEBUG:
34  case semrel::LogLevel::VERBOSE:
36  case semrel::LogLevel::INFO:
38  case semrel::LogLevel::IMPORTANT:
40  case semrel::LogLevel::WARNING:
42  case semrel::LogLevel::ERROR:
44 
45  default:
46  ARMARX_UNEXPECTED_ENUM_VALUE(semrel::LogLevel, level);
47  }
48  }
49 
50 } // namespace armarx::semantic
armarx::MessageTypeT::ERROR
@ ERROR
armarx::MessageTypeT
MessageTypeT
Definition: LogSender.h:45
ARMARX_UNEXPECTED_ENUM_VALUE
#define ARMARX_UNEXPECTED_ENUM_VALUE(EnumType, value)
Throw an UnexpectedEnumValueException.
Definition: UnexpectedEnumValueException.h:58
armarx::MessageTypeT::WARN
@ WARN
armarx::semantic::ArmarXLog::log
void log(semrel::LogMetaInfo info, const std::string &message) override
Definition: ArmarXLog.cpp:21
armarx::MessageTypeT::INFO
@ INFO
armarx::MessageTypeT::VERBOSE
@ VERBOSE
armarx::Logging::loghelper
LogSenderPtr loghelper(const char *file, int line, const char *function) const
Definition: Logging.cpp:113
armarx::MessageTypeT::IMPORTANT
@ IMPORTANT
armarx::semantic::ArmarXLog::setAsImplementation
static void setAsImplementation(const std::string &tag)
Definition: ArmarXLog.cpp:9
message
message(STATUS "Boost-Library-Dir: " "${Boost_LIBRARY_DIRS}") message(STATUS "Boost-LIBRARIES
Definition: CMakeLists.txt:8
UnexpectedEnumValueException.h
armarx::semantic::ArmarXLog::ArmarXLog
ArmarXLog(const std::string &tag="")
Definition: ArmarXLog.cpp:14
ArmarXLog.h
armarx::semantic
Definition: ShapesSupportRelations.cpp:32
armarx::LogSender::SetComponentName
static void SetComponentName(const std::string &componentName)
Definition: LogSender.cpp:146
armarx::MessageTypeT::DEBUG
@ DEBUG
armarx::Logging::tag
LogTag tag
Definition: Logging.h:278
armarx::Logging::setTag
void setTag(const LogTag &tag)
Definition: Logging.cpp:54