Mercurial > hg > orthanc
view OrthancServer/Resources/Samples/CppHelpers/Logging/OrthancLogger.cpp @ 4797:4e765c18ace7 storage-cache
enable using multiple threads to load instances when generating zip archive/media
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 07 Oct 2021 13:31:36 +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; } }