From 10000b324ffd18e9fedb51bc1608ea1bb4b2afe8 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Thu, 23 Mar 2023 20:00:42 -0500 Subject: [PATCH] Move message to log level error to avoid poluting output when sent to a file. --- src/user_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user_options.c b/src/user_options.c index a4fe5f760..af516436b 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1002,7 +1002,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) if ((user_options->show == true) && (user_options->username == true)) { - event_log_advice (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output."); + event_log_error (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output."); return 0; }