diff Framework/Oracle/GenericOracleRunner.cpp @ 1149:2da8b4d6f8c1 broker

renamed ParsedDicomFileCache as ParsedDicomCache
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 Nov 2019 12:35:35 +0100
parents 5e164c629923
children 7aad0984d38a
line wrap: on
line diff
--- a/Framework/Oracle/GenericOracleRunner.cpp	Fri Nov 15 10:42:16 2019 +0100
+++ b/Framework/Oracle/GenericOracleRunner.cpp	Fri Nov 15 12:35:35 2019 +0100
@@ -217,7 +217,6 @@
       c = a / b;
     }
 
-    LOG(TRACE) << "Oracle reading file: " << c.string();
     return c.string();
   }
 
@@ -228,6 +227,7 @@
                           const ReadFileCommand& command)
   {
     std::string path = GetPath(root, command.GetPath());
+    LOG(TRACE) << "Oracle reading file: " << path;
 
     std::string content;
     Orthanc::SystemToolbox::ReadFile(content, path, true /* log */);
@@ -262,7 +262,7 @@
         }
 
         LOG(TRACE) << "Parsing DICOM file, " 
-                   << (command.IsPixelDataIncluded() ? "with" : "witout")
+                   << (command.IsPixelDataIncluded() ? "with" : "without")
                    << " pixel data: " << path;
 
         boost::posix_time::ptime start = boost::posix_time::microsec_clock::local_time();