diff Plugin/SeriesInformationAdapter.cpp @ 260:620ed85fb514

replacing OrthancPluginLog...() by LOG(...)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Jun 2020 17:38:40 +0200
parents aee499712ac4
children ec1af1fdcaca
line wrap: on
line diff
--- a/Plugin/SeriesInformationAdapter.cpp	Sat May 30 10:53:09 2020 +0200
+++ b/Plugin/SeriesInformationAdapter.cpp	Fri Jun 05 17:38:40 2020 +0200
@@ -30,8 +30,7 @@
   bool SeriesInformationAdapter::Create(std::string& content,
                                         const std::string& seriesId)
   {
-    std::string message = "Ordering instances of series: " + seriesId;
-    OrthancPluginLogInfo(context_, message.c_str());
+    LOG(INFO) << "Ordering instances of series: " << seriesId;
 
     Json::Value series, study, patient, ordered;
     if (!GetJsonFromOrthanc(series, context_, "/series/" + seriesId) ||