Standard logging for trimmer/copy.c
[babeltrace.git] / plugins / utils / trimmer / iterator.c
index 238319fee8292038d7a7e070e6ea9727219eb88e..fd0ef2a5f06fc4d82d6c4bd58388d58332f6c12c 100644 (file)
@@ -157,7 +157,7 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
        if (bound->lazy_values.gmt) {
                /* Get day, month, year. */
                if (!bt_gmtime_r(&timeval, &tm)) {
-                       BT_LOGE_STR("Failure in bt_gmtime_r()");
+                       BT_LOGE_STR("Failure in bt_gmtime_r().");
                        goto error;
                }
                tm.tm_sec = bound->lazy_values.ss;
@@ -172,7 +172,7 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
        } else {
                /* Get day, month, year. */
                if (!bt_localtime_r(&timeval, &tm)) {
-                       BT_LOGE_STR("Failure in bt_localtime_r()");
+                       BT_LOGE_STR("Failure in bt_localtime_r().");
                        goto error;
                }
                tm.tm_sec = bound->lazy_values.ss;
@@ -246,14 +246,14 @@ struct bt_notification *evaluate_event_notification(
 
        clock_value = bt_ctf_event_get_clock_value(event, clock_class);
        if (!clock_value) {
-               BT_LOGE_STR("Failed to retrieve clock value");
+               BT_LOGE_STR("Failed to retrieve clock value.");
                goto error;
        }
 
        clock_ret = bt_ctf_clock_value_get_value_ns_from_epoch(
                        clock_value, &ts);
        if (clock_ret) {
-               BT_LOGE_STR("Failed to retrieve clock value timestamp");
+               BT_LOGE_STR("Failed to retrieve clock value timestamp.");
                goto error;
        }
        if (update_lazy_bound(begin, "begin", ts, &lazy_update)) {
@@ -264,7 +264,7 @@ struct bt_notification *evaluate_event_notification(
        }
        if (lazy_update && begin->set && end->set) {
                if (begin->value > end->value) {
-                       BT_LOGE_STR("Unexpected: time range begin value is above end value");
+                       BT_LOGE_STR("Unexpected: time range begin value is above end value.");
                        goto error;
                }
        }
@@ -468,7 +468,7 @@ struct bt_notification *evaluate_packet_notification(
        }
        if (lazy_update && begin->set && end->set) {
                if (begin->value > end->value) {
-                       BT_LOGE_STR("Unexpected: time range begin value is above end value");
+                       BT_LOGE_STR("Unexpected: time range begin value is above end value.");
                        goto end_no_notif;
                }
        }
This page took 0.024554 seconds and 4 git commands to generate.