view Resources/Samples/CppHelpers/Logging/OrthancLogger.cpp @ 3875:ea1d32861cfc transcoding

moving timeout from DicomAssocation to DicomAssociationParameters
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 04 May 2020 14:49:31 +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;
  }
}