diff OrthancServer/Sources/ServerJobs/LuaJobManager.cpp @ 4295:90f91b78d708

applied log categories
author Alain Mazy <alain@mazy.be>
date Thu, 05 Nov 2020 12:01:11 +0100
parents 05b8fd21089c
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerJobs/LuaJobManager.cpp	Thu Nov 05 11:43:32 2020 +0100
+++ b/OrthancServer/Sources/ServerJobs/LuaJobManager.cpp	Thu Nov 05 12:01:11 2020 +0100
@@ -76,8 +76,8 @@
     }
 
     connectionManager_.SetInactivityTimeout(dicomTimeout * 1000);  // Milliseconds expected
-    LOG(INFO) << "Lua: DICOM associations will be closed after "
-              << dicomTimeout << " seconds of inactivity";
+    CLOG(INFO, LUA) << "Lua: DICOM associations will be closed after "
+                    << dicomTimeout << " seconds of inactivity";
   }
 
 
@@ -106,7 +106,7 @@
   {
     boost::mutex::scoped_lock lock(mutex_);
 
-    LOG(INFO) << "Awaking trailing sleep";
+    CLOG(INFO, LUA) << "Awaking trailing sleep";
 
     if (currentJob_ != NULL)
     {