From 6ba31a5581e8e1fdc556699242b8161a8358d455 Mon Sep 17 00:00:00 2001 From: Brian Pow Date: Wed, 21 Feb 2018 20:22:51 +0800 Subject: [PATCH] use PrintAndLogEx() instead of PrintAndLog() --- client/hardnested/hardnested_bruteforce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/hardnested/hardnested_bruteforce.c b/client/hardnested/hardnested_bruteforce.c index 1aff9a6d3..602453646 100644 --- a/client/hardnested/hardnested_bruteforce.c +++ b/client/hardnested/hardnested_bruteforce.c @@ -432,7 +432,7 @@ float brute_force_benchmark() { test_candidates[NUM_BRUTE_FORCE_THREADS-1].next = NULL; if (!read_bench_data(test_candidates)) { - PrintAndLog("Couldn't read benchmark data. Assuming brute force rate of %1.0f states per second", DEFAULT_BRUTE_FORCE_RATE); + PrintAndLogEx(NORMAL, "Couldn't read benchmark data. Assuming brute force rate of %1.0f states per second", DEFAULT_BRUTE_FORCE_RATE); return DEFAULT_BRUTE_FORCE_RATE; }