diff options
author | fanquake <fanquake@gmail.com> | 2020-05-19 15:21:53 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-05-19 15:41:21 +0800 |
commit | 042ff521421fc9a860b4a3e3a7d214bd9a23169f (patch) | |
tree | a9563f9b86c4c83ad13419175959b73d6a291468 /src | |
parent | c73bd004ae81d5a34f429659957d8c01c6066d28 (diff) | |
parent | fa243be1dc49385fff847f8a784c7a9c9f07c939 (diff) |
Merge #18999: log: Remove "No rpcpassword set" from logs
fa243be1dc49385fff847f8a784c7a9c9f07c939 log: Remove "No rpcpassword set" from logs (MarcoFalke)
Pull request description:
rpcpassword is deprecated and not recommended anymore. So remove it from the logs, which indicate that an rpcpassword should be set and cause confusion. See #18998.
ACKs for top commit:
ryanofsky:
Code review ACK fa243be1dc49385fff847f8a784c7a9c9f07c939. New log message makes more sense
elichai:
Re Code Review ACK (Checked the diff) fa243be1dc49385fff847f8a784c7a9c9f07c939
Tree-SHA512: de3e0800a204b15a59a59a7e6f345013ee9d38e8c5d0c9a94d6142780faa9cce672ed358c7571f53c1eb843bf5afb0b7bcbfd289d3b9e2e0bf8ff2fd361e98a9
Diffstat (limited to 'src')
-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 |