Skip to content

Commit 042ff52

Browse files
committed
Merge #18999: log: Remove "No rpcpassword set" from logs
fa243be 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 fa243be. New log message makes more sense elichai: Re Code Review ACK (Checked the diff) fa243be Tree-SHA512: de3e0800a204b15a59a59a7e6f345013ee9d38e8c5d0c9a94d6142780faa9cce672ed358c7571f53c1eb843bf5afb0b7bcbfd289d3b9e2e0bf8ff2fd361e98a9
2 parents c73bd00 + fa243be commit 042ff52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/httprpc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ static bool InitRPCAuthentication()
249249
{
250250
if (gArgs.GetArg("-rpcpassword", "") == "")
251251
{
252-
LogPrintf("No rpcpassword set - using random cookie authentication.\n");
252+
LogPrintf("Using random cookie authentication.\n");
253253
if (!GenerateAuthCookie(&strRPCUserColonPass)) {
254254
uiInterface.ThreadSafeMessageBox(
255255
_("Error: A fatal internal error occurred, see debug.log for details"), // Same message as AbortNode

0 commit comments

Comments
 (0)