[lttng-dev] [PATCH babeltrace] Fix erroneous warning/error messages
Mathieu Desnoyers
mathieu.desnoyers at efficios.com
Thu Dec 6 11:22:00 EST 2012
* Simon Marchi (simon.marchi at polymtl.ca) wrote:
> This led to user confusion.
merged, thanks!
Mathieu
>
> Signed-off-by: Simon Marchi <simon.marchi at polymtl.ca>
> ---
> lib/context.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/lib/context.c b/lib/context.c
> index 9c11598..5516e49 100644
> --- a/lib/context.c
> +++ b/lib/context.c
> @@ -90,16 +90,16 @@ int bt_context_add_trace(struct bt_context *ctx, const char *path,
> if (path) {
> td = fmt->open_trace(path, O_RDONLY, packet_seek, NULL);
> if (!td) {
> - fprintf(stderr, "[warning] [Context] Cannot open_trace of the format %s .\n\n",
> - path);
> + fprintf(stderr, "[warning] [Context] Cannot open_trace of format %s at path %s.\n\n",
> + format_name, path);
> ret = -1;
> goto end;
> }
> } else {
> td = fmt->open_mmap_trace(stream_list, packet_seek, metadata);
> if (!td) {
> - fprintf(stderr, "[error] [Context] Cannot open_trace of the format %s .\n\n",
> - path);
> + fprintf(stderr, "[error] [Context] Cannot open_mmap_trace of format %s.\n\n",
> + format_name);
> ret = -1;
> goto end;
> }
> --
> 1.7.10.4
>
>
> _______________________________________________
> lttng-dev mailing list
> lttng-dev at lists.lttng.org
> http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
More information about the lttng-dev
mailing list