Browse Source

* Daemon.cpp : --log option now uses descriptive values: file, stdout (#356)

pull/358/head
hagen 9 years ago
parent
commit
21ecf309bb
  1. 8
      Daemon.cpp

8
Daemon.cpp

@ -135,11 +135,11 @@ namespace i2p
std::string logs = ""; i2p::config::GetOption("log", logs); std::string logs = ""; i2p::config::GetOption("log", logs);
std::string logfile = ""; i2p::config::GetOption("logfile", logfile); std::string logfile = ""; i2p::config::GetOption("logfile", logfile);
std::string loglevel = ""; i2p::config::GetOption("loglevel", loglevel); std::string loglevel = ""; i2p::config::GetOption("loglevel", loglevel);
// temporary hack
if (isDaemon || logs != "") isLogging = true;
if (isLogging) if (isDaemon && (logs == "" || logs == "stdout"))
logs = "file";
if (logs == "file")
{ {
if (logfile == "") if (logfile == "")
{ {

Loading…
Cancel
Save