mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:44:15 +00:00
logging opimization
This commit is contained in:
parent
742dbdb68a
commit
f3676d7f18
@ -148,7 +148,7 @@ namespace log {
|
|||||||
LogLevel level; /**< message level */
|
LogLevel level; /**< message level */
|
||||||
std::thread::id tid; /**< id of thread that generated message */
|
std::thread::id tid; /**< id of thread that generated message */
|
||||||
|
|
||||||
LogMsg (LogLevel lvl, std::time_t ts, const std::string & txt): timestamp(ts), text(txt), level(lvl) {};
|
LogMsg (LogLevel lvl, std::time_t ts, std::string&& txt): timestamp(ts), text(std::move(txt)), level(lvl) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
Log & Logger();
|
Log & Logger();
|
||||||
@ -189,7 +189,7 @@ void LogPrint (LogLevel level, TArgs&&... args) noexcept
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
// fold message to single string
|
// fold message to single string
|
||||||
std::stringstream ss("");
|
std::stringstream ss;
|
||||||
|
|
||||||
#if (__cplusplus >= 201703L) // C++ 17 or higher
|
#if (__cplusplus >= 201703L) // C++ 17 or higher
|
||||||
(LogPrint (ss, std::forward<TArgs>(args)), ...);
|
(LogPrint (ss, std::forward<TArgs>(args)), ...);
|
||||||
@ -197,7 +197,7 @@ void LogPrint (LogLevel level, TArgs&&... args) noexcept
|
|||||||
LogPrint (ss, std::forward<TArgs>(args)...);
|
LogPrint (ss, std::forward<TArgs>(args)...);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
auto msg = std::make_shared<i2p::log::LogMsg>(level, std::time(nullptr), ss.str());
|
auto msg = std::make_shared<i2p::log::LogMsg>(level, std::time(nullptr), std::move(ss).str());
|
||||||
msg->tid = std::this_thread::get_id();
|
msg->tid = std::this_thread::get_id();
|
||||||
log.Append(msg);
|
log.Append(msg);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user