Update Daemon.cpp

rollback
This commit is contained in:
orignal 2014-10-25 22:11:31 -04:00
parent 51b2b5676c
commit a20cc97fa3

View File

@ -83,6 +83,8 @@ namespace i2p
{
// initialize log
if (isLogging)
{
if (isDaemon)
{
std::string logfile_path = IsService () ? "/var/log" : i2p::util::filesystem::GetDataDir().string();
#ifndef _WIN32
@ -92,6 +94,9 @@ namespace i2p
#endif
StartLog (logfile_path);
}
else
StartLog (""); // write to stdout
}
d.httpServer = new i2p::util::HTTPServer(i2p::util::config::GetArg("-httpport", 7070));
d.httpServer->Start();