cpp-common/bt2c/logging.hpp: remove no-formatting ("str") alternatives
[babeltrace.git] / src / plugins / utils / muxer / msg-iter.cpp
index c3e8c3db1870cc20d3973ab7b6ab828b37020d0d..2754bb1143c61bc597fc59bbda2c13569039add3 100644 (file)
@@ -367,18 +367,17 @@ bool MsgIter::_HeapComparator::operator()(
              * the oldest one, that is, the one having the smallest
              * timestamp.
              */
-            BT_CPPLOGT_STR("Timestamp of message A is less than timestamp of message B: oldest=A");
+            BT_CPPLOGT("Timestamp of message A is less than timestamp of message B: oldest=A");
             return true;
         } else if (*msgTsA > *msgTsB) {
-            BT_CPPLOGT_STR(
-                "Timestamp of message A is greater than timestamp of message B: oldest=B");
+            BT_CPPLOGT("Timestamp of message A is greater than timestamp of message B: oldest=B");
             return false;
         }
     } else if (msgTsA && !msgTsB) {
-        BT_CPPLOGT_STR("Message A has a timestamp, but message B has none: oldest=B");
+        BT_CPPLOGT("Message A has a timestamp, but message B has none: oldest=B");
         return false;
     } else if (!msgTsA && msgTsB) {
-        BT_CPPLOGT_STR("Message B has a timestamp, but message A has none: oldest=A");
+        BT_CPPLOGT("Message B has a timestamp, but message A has none: oldest=A");
         return true;
     }
 
This page took 0.023997 seconds and 4 git commands to generate.