mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
[Log] create logfile even if loglevel is "none"
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
5700e18257
commit
e6fdf5ad8d
|
@ -199,7 +199,6 @@ namespace log {
|
||||||
void Log::SendTo (const std::string& path)
|
void Log::SendTo (const std::string& path)
|
||||||
{
|
{
|
||||||
if (m_LogStream) m_LogStream = nullptr; // close previous
|
if (m_LogStream) m_LogStream = nullptr; // close previous
|
||||||
if (m_MinLevel == eLogNone) return;
|
|
||||||
auto flags = std::ofstream::out | std::ofstream::app;
|
auto flags = std::ofstream::out | std::ofstream::app;
|
||||||
auto os = std::make_shared<std::ofstream> (path, flags);
|
auto os = std::make_shared<std::ofstream> (path, flags);
|
||||||
if (os->is_open ())
|
if (os->is_open ())
|
||||||
|
|
Loading…
Reference in a new issue