From 8bb74815b775ce1d1dc7631dff2a0f037b002fc9 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 18 Dec 2023 22:14:51 +0100 Subject: [PATCH] adapted some output --- client/src/cmdhftexkom.c | 2 +- client/src/cmdlfparadox.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/cmdhftexkom.c b/client/src/cmdhftexkom.c index 6063e807c..0fa08edc7 100644 --- a/client/src/cmdhftexkom.c +++ b/client/src/cmdhftexkom.c @@ -638,7 +638,7 @@ static int CmdHFTexkomReader(const char *Cmd) { void *argtable[] = { arg_param_begin, - arg_lit0("1", NULL, "Use data from Graphbuffer"), + arg_lit0("1", NULL, "Use data from Graphbuffer (offline mode)"), arg_lit0("v", "verbose", "Verbose scan and output"), arg_lit0("@", NULL, "optional - continuous reader mode"), arg_param_end diff --git a/client/src/cmdlfparadox.c b/client/src/cmdlfparadox.c index ad6b42bf8..daa8a350c 100644 --- a/client/src/cmdlfparadox.c +++ b/client/src/cmdlfparadox.c @@ -159,7 +159,7 @@ int demodParadox(bool verbose, bool oldChksum) { // not manchester data if (bits[i] == bits[i + 1]) { - PrintAndLogEx(WARNING, "Error Manchester at %u", i); + PrintAndLogEx(DEBUG, "Error Manchester at %u", i); errors++; } @@ -173,7 +173,7 @@ int demodParadox(bool verbose, bool oldChksum) { } if (errors) { - PrintAndLogEx(WARNING, "Total Manchester Errors... %u", errors); + PrintAndLogEx(DEBUG, "Total Manchester Errors... %u", errors); } setDemodBuff(bits, size, idx);