From 37ce43cb8b13c034bfee8325312848b162ed8e82 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 3 Oct 2019 16:17:25 +0200 Subject: [PATCH] chg: dont log helpout --- client/cmdparser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/cmdparser.c b/client/cmdparser.c index 9e7b83afa..f116b5ecd 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -155,7 +155,8 @@ void CmdsHelp(const command_t Commands[]) { int i = 0; while (Commands[i].Name) { if (Commands[i].IsAvailable()) - PrintAndLogEx(NORMAL, _GREEN_("%-16s")" %s", Commands[i].Name, Commands[i].Help); +// PrintAndLogEx(NORMAL, _GREEN_("%-16s")" %s", Commands[i].Name, Commands[i].Help); + printf(_GREEN_("%-16s")" %s\n", Commands[i].Name, Commands[i].Help); ++i; } }