diff OrthancServer/ServerJobs/SystemCallOperation.cpp @ 2607:44e268605478 jobs

ModifyInstanceOperation
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 19 May 2018 15:28:41 +0200
parents f2b9d3256060
children 25225f0b4f33
line wrap: on
line diff
--- a/OrthancServer/ServerJobs/SystemCallOperation.cpp	Sat May 19 15:10:26 2018 +0200
+++ b/OrthancServer/ServerJobs/SystemCallOperation.cpp	Sat May 19 15:28:41 2018 +0200
@@ -96,7 +96,7 @@
       info += " " + arguments[i];
     }
     
-    LOG(INFO) << "Lua: System call: " << info;
+    LOG(INFO) << "Lua: System call: \"" << info << "\"";
 
     try
     {
@@ -107,7 +107,7 @@
     }
     catch (OrthancException& e)
     {
-      LOG(ERROR) << "Lua: Failed system call - " << info << ": " << e.What();
+      LOG(ERROR) << "Lua: Failed system call - \"" << info << "\": " << e.What();
     }
   }
 }