From: Uwe Hermann Date: Mon, 28 May 2012 22:23:33 +0000 (+0200) Subject: cli: Output which file format was autodetected. X-Git-Tag: sigrok-cli-0.3.1~9 X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=commitdiff_plain;h=78912cc19a4b64e6a477dff5cd917614f7b9f7c3 cli: Output which file format was autodetected. --- 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]; }