diff --git a/Log.cpp b/Log.cpp index 408f6a6..e8b7b64 100644 --- a/Log.cpp +++ b/Log.cpp @@ -32,7 +32,7 @@ public: std::ostream* os = getOs(lvl); if (os) { - *os << sbuf << std::endl; + *os << sbuf << '\n'; } }; @@ -83,7 +83,7 @@ private: else *os << sbuf; - *os << std::endl; + *os << '\n'; } }