mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #5519
b8b957d
cmake: fix incorrect hint for OPENSSL_ROOT_DIR (moneromooo-monero)367bb80
mlog: default to not showing SSL errors (moneromooo-monero)
This commit is contained in:
commit
1fc1c7318c
@ -898,9 +898,9 @@ elseif(Boost_FOUND)
|
|||||||
set(BOOST_BEFORE_1_62 true)
|
set(BOOST_BEFORE_1_62 true)
|
||||||
endif()
|
endif()
|
||||||
if (BOOST_BEFORE_1_62)
|
if (BOOST_BEFORE_1_62)
|
||||||
message(FATAL_ERROR "Boost older than 1.62 is too old to link with OpenSSL 1.1 or newer. "
|
message(FATAL_ERROR "Boost ${Boost_VERSION} (older than 1.62) is too old to link with OpenSSL ${OPENSSL_VERSION} (1.1 or newer) found at ${OPENSSL_INCLUDE_DIR} and ${OPENSSL_LIBRARIES}. "
|
||||||
"Update Boost or install OpenSSL 1.0 and set path to it when running cmake: "
|
"Update Boost or install OpenSSL 1.0 and set path to it when running cmake: "
|
||||||
"cmake -DOPENSSL_ROOT_DIR='/usr/include/openssl-1.0;/usr/lib/openssl-1.0'")
|
"cmake -DOPENSSL_ROOT_DIR='/usr/include/openssl-1.0'")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ static const char *get_default_categories(int level)
|
|||||||
switch (level)
|
switch (level)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
categories = "*:WARNING,net:FATAL,net.http:FATAL,net.p2p:FATAL,net.cn:FATAL,global:INFO,verify:FATAL,serialization:FATAL,stacktrace:INFO,logging:INFO,msgwriter:INFO";
|
categories = "*:WARNING,net:FATAL,net.http:FATAL,net.ssl:FATAL,net.p2p:FATAL,net.cn:FATAL,global:INFO,verify:FATAL,serialization:FATAL,stacktrace:INFO,logging:INFO,msgwriter:INFO";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
categories = "*:INFO,global:INFO,stacktrace:INFO,logging:INFO,msgwriter:INFO,perf.*:DEBUG";
|
categories = "*:INFO,global:INFO,stacktrace:INFO,logging:INFO,msgwriter:INFO,perf.*:DEBUG";
|
||||||
|
Loading…
Reference in New Issue
Block a user