From e2976a6689641f396859a6723919a6b87802b5a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 21 Jan 2020 09:27:08 +0200 Subject: [PATCH] MXS-2843: Remove password hash from log_info output --- server/modules/authenticator/MySQLAuth/dbusers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/authenticator/MySQLAuth/dbusers.cc b/server/modules/authenticator/MySQLAuth/dbusers.cc index 63bc57e31..5a5a439b6 100644 --- a/server/modules/authenticator/MySQLAuth/dbusers.cc +++ b/server/modules/authenticator/MySQLAuth/dbusers.cc @@ -568,7 +568,7 @@ void add_mysql_user(sqlite3* handle, sqlite3_free(err); } - MXS_INFO("Added user: %s", insert_sql); + MXS_INFO("Added user: %s@%s db: %s global: %s", user, host, dbstr, anydb ? "yes" : "no"); } static void add_database(sqlite3* handle, const char* db)