From 8657e17a0b91859ea0f207b2d3aeceabb1cccab6 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 16 Apr 2019 17:29:19 +0200 Subject: [PATCH] more colors --- client/proxmark3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/proxmark3.c b/client/proxmark3.c index 43ab9bc97..4fd182ce7 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -441,7 +441,7 @@ int main(int argc, char *argv[]) { if (strlen(script_cmd) == 0) { script_cmd = NULL; - PrintAndLogEx(WARNING, "ERROR: execute command: command not found.\n"); + PrintAndLogEx(ERR, _RED_("ERROR:") "execute command: " _YELLOW_("command not found") ".\n"); return 2; } else { if (addLuaExec) { @@ -456,7 +456,7 @@ int main(int argc, char *argv[]) { } } - PrintAndLogEx(SUCCESS, "execute command from commandline: %s\n", script_cmd); + PrintAndLogEx(SUCCESS, "execute command from commandline: " _YELLOW_("%s") "\n", script_cmd); } }