From 78912cc19a4b64e6a477dff5cd917614f7b9f7c3 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 29 May 2012 00:23:33 +0200 Subject: [PATCH] cli: Output which file format was autodetected. --- sigrok-cli.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sigrok-cli.c b/sigrok-cli.c index 52e894a..56882ff 100644 --- a/sigrok-cli.c +++ b/sigrok-cli.c @@ -830,6 +830,9 @@ static struct sr_input_format *determine_input_file_format( g_critical("Error: no matching input module found."); return NULL; } + + g_debug("cli: Autodetected '%s' input format for file '%s'.", + inputs[i]->id, filename); return inputs[i]; } -- 2.30.2