diff --git a/Log.h b/Log.h index a6fc2222..26390634 100644 --- a/Log.h +++ b/Log.h @@ -152,14 +152,14 @@ namespace log { /** internal usage only -- folding args array to single string */ template -void LogPrint (std::stringstream& s, TValue&& arg) noexcept +void LogPrint (std::stringstream& s, TValue&& arg) { s << std::forward(arg); } /** internal usage only -- folding args array to single string */ template -void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) noexcept +void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) { LogPrint (s, std::forward(arg)); LogPrint (s, std::forward(args)...); @@ -171,7 +171,7 @@ void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) noexcept * @param args Array of message parts */ template -void LogPrint (LogLevel level, TArgs&&... args) noexcept +void LogPrint (LogLevel level, TArgs&&... args) { i2p::log::Log &log = i2p::log::Logger(); if (level > log.GetLogLevel ())