chg: dont log helpout

This commit is contained in:
iceman1001 2019-10-03 16:17:25 +02:00
parent 38673a10aa
commit 37ce43cb8b

View file

@ -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;
}
}