Mercurial > hg > orthanc
view OrthancServer/Resources/Samples/CppHelpers/Logging/OrthancLogger.cpp @ 4733:1db3b79d97bd
Error code and description of jobs are now saved into the Orthanc database
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 28 Jun 2021 14:25:37 +0200 |
parents | d25f4c0fa160 |
children | c847b0dfd255 |
line wrap: on
line source
#include "OrthancLogger.h" #include "Logging.h" namespace OrthancHelpers { void OrthancLogger::Trace(const char *message) { VLOG(1) << GetContext() << " " << message; } void OrthancLogger::Trace(const std::string& message) { VLOG(1) << GetContext() << " " << message; } void OrthancLogger::Info(const char *message) { LOG(INFO) << GetContext() << " " << message; } void OrthancLogger::Info(const std::string& message) { LOG(INFO) << GetContext() << " " << message; } void OrthancLogger::Warning(const char *message) { LOG(WARNING) << GetContext() << " " << message; } void OrthancLogger::Warning(const std::string& message) { LOG(WARNING) << GetContext() << " " << message; } void OrthancLogger::Error(const char *message) { LOG(ERROR) << GetContext() << " " << message; } void OrthancLogger::Error(const std::string& message) { LOG(ERROR) << GetContext() << " " << message; } }