mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 03:37:49 +02:00
* logger: explicit allow log output
This commit is contained in:
parent
cc25b22f11
commit
38103aaac5
4 changed files with 5 additions and 3 deletions
3
Log.cpp
3
Log.cpp
|
@ -127,7 +127,6 @@ namespace log {
|
|||
m_Logfile = path;
|
||||
m_Destination = eLogFile;
|
||||
m_LogStream = os;
|
||||
m_IsReady = true;
|
||||
return;
|
||||
}
|
||||
LogPrint(eLogError, "Log: can't open file ", path);
|
||||
|
@ -135,7 +134,6 @@ namespace log {
|
|||
|
||||
void Log::SendTo (std::shared_ptr<std::ostream> os) {
|
||||
m_Destination = eLogStream;
|
||||
m_IsReady = true;
|
||||
m_LogStream = os;
|
||||
}
|
||||
|
||||
|
@ -143,7 +141,6 @@ namespace log {
|
|||
void Log::SendTo(const char *name, int facility) {
|
||||
m_Destination = eLogSyslog;
|
||||
m_LogStream = nullptr;
|
||||
m_IsReady = true;
|
||||
openlog(name, LOG_CONS | LOG_PID, facility);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue