Demote warning about rmem/wmem max and make its need more explicit in the log.

This commit is contained in:
Con Kolivas 2023-05-30 17:36:36 +10:00
parent 23de68dded
commit 01af3fa18d

View File

@ -500,7 +500,7 @@ int set_sendbufsize(ckpool_t *ckp, const int fd, const int len)
opt /= 2;
}
if (opt < len) {
LOGWARNING("Failed to increase sendbufsize to %d, increase wmem_max or start %s privileged",
LOGNOTICE("Failed to increase sendbufsize to %d, increase wmem_max or start %s privileged if using a remote btcd",
len, ckp->name);
ckp->wmem_warn = true;
} else
@ -528,7 +528,7 @@ int set_recvbufsize(ckpool_t *ckp, const int fd, const int len)
opt /= 2;
}
if (opt < len) {
LOGWARNING("Failed to increase rcvbufsiz to %d, increase rmem_max or start %s privileged",
LOGNOTICE("Failed to increase rcvbufsiz to %d, increase rmem_max or start %s privileged if using a remote btcd",
len, ckp->name);
ckp->rmem_warn = true;
} else