use info as default log level on clients as most users have continously been confused by lack of log output with warn level as default, which i predicted would happen

pull/1930/head
Jeff 2 years ago
parent b819ed21d2
commit a7cfa3ea87
No known key found for this signature in database
GPG Key ID: 025C02EE3A092F2D

@ -1159,7 +1159,8 @@ namespace llarp
constexpr Default DefaultLogType{
platform::is_android or platform::is_apple ? "system" : "print"};
constexpr Default DefaultLogFile{""};
constexpr Default DefaultLogLevel{"warn"};
const Default DefaultLogLevel{params.isRelay ? "warn" : "info"};
conf.defineOption<std::string>(
"logging",

Loading…
Cancel
Save