stream.c: standardize "Cannot truncate stream file [...]" log message
[babeltrace.git] / lib / ctf-ir / stream.c
index 8ba0977c13bef601458dc296b13809805b4032c3..8145eb718814c740736c28d17fd6ce7f640b7c2c 100644 (file)
@@ -1688,10 +1688,11 @@ int bt_ctf_stream_flush(struct bt_ctf_stream *stream)
                ret = ftruncate(stream->pos.fd, stream->size);
        } while (ret == -1 && errno == EINTR);
        if (ret == -1) {
-               BT_LOGE_ERRNO("Cannot ftruncate() stream file to new size",
-                               "size = %" PRIu64 ", name = %s",
-                               stream->size,
-                               stream->name ? stream->name->str : "(null)");
+               BT_LOGE_ERRNO("Cannot truncate stream file to new size",
+                               ": size=%" PRIu64 ", stream-addr=%p, "
+                               "stream-name=\"%s\"",
+                               stream->size, stream,
+                               bt_ctf_stream_get_name(stream));
        }
 
 end:
This page took 0.022855 seconds and 4 git commands to generate.