From fa243be1dc49385fff847f8a784c7a9c9f07c939 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Sun, 17 May 2020 12:38:41 -0400 Subject: [PATCH] log: Remove "No rpcpassword set" from logs --- src/httprpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httprpc.cpp b/src/httprpc.cpp index 3c3e6e5bbac..3e1a9ba0968 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -249,7 +249,7 @@ static bool InitRPCAuthentication() { if (gArgs.GetArg("-rpcpassword", "") == "") { - LogPrintf("No rpcpassword set - using random cookie authentication.\n"); + LogPrintf("Using random cookie authentication.\n"); if (!GenerateAuthCookie(&strRPCUserColonPass)) { uiInterface.ThreadSafeMessageBox( _("Error: A fatal internal error occurred, see debug.log for details"), // Same message as AbortNode