diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-17 12:38:41 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-17 12:39:26 -0400 |
commit | fa243be1dc49385fff847f8a784c7a9c9f07c939 (patch) | |
tree | 8e87009fce07f89b73a7e43db8697ecf850ab389 | |
parent | dc5333d31f280e09bb1e8cdacfbe842f4ab9e69b (diff) |
log: Remove "No rpcpassword set" from logs
-rw-r--r-- | src/httprpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp index 3c3e6e5bba..3e1a9ba096 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 |