From eb906859b5eceeec9026d69a5768d58747f61716 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 11 Mar 2019 07:38:20 +0100 Subject: [PATCH] fix: 'lf ti demod' - hide debug messages --- client/cmdlfti.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdlfti.c b/client/cmdlfti.c index 8c609bddf..6abb9b5de 100644 --- a/client/cmdlfti.c +++ b/client/cmdlfti.c @@ -210,11 +210,11 @@ int CmdTIDemod(const char *Cmd) { RepaintGraphWindow(); - PrintAndLogEx(INFO, "raw tag bits = %s", bits); + PrintAndLogEx(DEBUG, "TI tag : raw tag bits | %s", bits); TagType = (shift3 >> 8) & 0xFF; if (TagType != ((shift0 >> 16) & 0xFF)) { - PrintAndLogEx(WARNING, "Error: start and stop bits do not match!"); + PrintAndLogEx(DEBUG, "TI tag : Error: start and stop bits do not match!"); goto out; } else if (TagType == 0x7E) { PrintAndLogEx(INFO, "Readonly TI tag detected.");