# HG changeset patch # User Sebastien Jodogne # Date 1590000839 -7200 # Node ID d30eb4ae5bb6d232c826cd041b380b1d53055ca8 # Parent 4d36d6e64c6d36addaea1cce2d2e58e74e594fef trying a fix for msvc2008 diff -r 4d36d6e64c6d -r d30eb4ae5bb6 OrthancServer/OrthancGetRequestHandler.cpp --- a/OrthancServer/OrthancGetRequestHandler.cpp Wed May 20 18:37:31 2020 +0200 +++ b/OrthancServer/OrthancGetRequestHandler.cpp Wed May 20 20:53:59 2020 +0200 @@ -48,6 +48,8 @@ #include "ServerContext.h" #include "ServerJobs/DicomModalityStoreJob.h" +#include // For std::stringstream + namespace Orthanc { @@ -395,7 +397,9 @@ if (stDetail.get() != NULL) { - LOG(INFO) << " Status Detail:" << OFendl << DcmObject::PrintHelper(*stDetail); + std::stringstream s; + s << DcmObject::PrintHelper(*stDetail); + LOG(INFO) << " Status Detail:" << OFendl << s.str(); } return cond;