diff OrthancServer/Sources/Database/SQLiteDatabaseWrapper.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 05b8fd21089c
children c7bd2f21ccc3
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp	Sun Nov 01 12:43:18 2020 +0100
+++ b/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp	Mon Nov 02 14:48:15 2020 +0100
@@ -155,10 +155,9 @@
 
       virtual void Compute(SQLite::FunctionContext& context)
       {
-        VLOG(1) << "There exists a remaining ancestor with public ID \""
-                << context.GetStringValue(0)
-                << "\" of type "
-                << context.GetIntValue(1);
+        TLOG(SQLITE) << "There exists a remaining ancestor with public ID \""
+                     << context.GetStringValue(0) << "\" of type "
+                     << context.GetIntValue(1);
 
         if (!hasRemainingAncestor_ ||
             remainingType_ >= context.GetIntValue(1))