From 6dc0aa53c70ff5959f3548809af92675b52f22bf Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 11 Jun 2020 20:58:31 +0200 Subject: [PATCH] textual... --- client/src/comms.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/src/comms.c b/client/src/comms.c index 9763504d4..df4c404df 100644 --- a/client/src/comms.c +++ b/client/src/comms.c @@ -115,11 +115,11 @@ void SendCommandOLD(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, v static void SendCommandNG_internal(uint16_t cmd, uint8_t *data, size_t len, bool ng) { #ifdef COMMS_DEBUG - PrintAndLogEx(NORMAL, "Sending %s", ng ? "NG" : "MIX"); + PrintAndLogEx(INFO, "Sending %s", ng ? "NG" : "MIX"); #endif if (!session.pm3_present) { - PrintAndLogEx(NORMAL, "Sending bytes to proxmark failed - offline"); + PrintAndLogEx(INFO, "Sending bytes to proxmark failed - offline"); return; } if (len > PM3_CMD_DATA_SIZE) { @@ -289,7 +289,8 @@ static void PacketResponseReceived(PacketResponseNG *packet) { } if (flag & FLAG_LOG) { - PrintAndLogEx(NORMAL, "[" _MAGENTA_("pm3") "] ["_BLUE_("#")"] " "%s", s); + //PrintAndLogEx(NORMAL, "[" _MAGENTA_("pm3") "] ["_BLUE_("#")"] " "%s", s); + PrintAndLogEx(NORMAL, "[" _BLUE_("#") "] %s", s); } else { if (flag & FLAG_INPLACE) printf("\r");