diff OrthancFramework/Sources/HttpServer/HttpServer.cpp @ 4268:0ae2ca210077

new macro TLOG() to replace VLOG() for trace logs with a category
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Nov 2020 14:48:15 +0100
parents f047e2734655
children 0034f855c023
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/HttpServer.cpp	Sun Nov 01 12:43:18 2020 +0100
+++ b/OrthancFramework/Sources/HttpServer/HttpServer.cpp	Mon Nov 02 14:48:15 2020 +0100
@@ -1088,7 +1088,7 @@
 
       std::transform(name.begin(), name.end(), name.begin(), ::tolower);
       headers.insert(std::make_pair(name, value));
-      VLOG(1) << "HTTP header: [" << name << "]: [" << value << "]";
+      LOG(TRACE) << "HTTP header: [" << name << "]: [" << value << "]";
     }
 
     if (server.IsHttpCompressionEnabled())