From 43ec321e5311daaca0703b05329aa9ac96a2c0eb Mon Sep 17 00:00:00 2001 From: Brian Pow Date: Wed, 21 Feb 2018 18:44:28 +0800 Subject: [PATCH] tweak messages --- client/cmdhf15.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdhf15.c b/client/cmdhf15.c index d94ee789f..91a170ad8 100644 --- a/client/cmdhf15.c +++ b/client/cmdhf15.c @@ -575,7 +575,7 @@ int CmdHF15Record(const char *Cmd) { int HF15Reader(const char *Cmd, bool verbose) { uint8_t uid[8] = {0,0,0,0,0,0,0,0}; if (!getUID(uid)) { - if (verbose) PrintAndLogEx(NORMAL, "No Tag found."); + if (verbose) PrintAndLogEx(WARNING, "No tag found."); return 0; } @@ -669,7 +669,7 @@ int CmdHF15Dump(const char*Cmd) { PrintAndLogEx(INFO, "Using UID as filename"); if (!getUID(uid)) { - PrintAndLogEx(NORMAL, "No tag found."); + PrintAndLogEx(WARNING, "No tag found."); return 1; }