Mercurial > hg > orthanc
view Resources/Samples/CppHelpers/Logging/OrthancLogger.cpp @ 3947:cf6eb4fc6841 transcoding
fix issue #179: use a shared mutex to avoid deadlock in python plugins
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Tue, 19 May 2020 16:19:05 +0200 |
parents | fbe22748cd9c |
children |
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; } }