Removed template from LogStream.
This commit is contained in:
parent
48137ec24d
commit
fd5416c94e
@ -52,8 +52,7 @@ struct Format
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &operator<<(LogStream &stream, const Format &format)
|
||||||
LogStream<StandardStream> &operator<<(LogStream<StandardStream> &stream, const Format &format)
|
|
||||||
{
|
{
|
||||||
if (!stream.supportsColor())
|
if (!stream.supportsColor())
|
||||||
return stream;
|
return stream;
|
||||||
@ -72,8 +71,7 @@ class ResetFormat
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &operator<<(LogStream &stream, const ResetFormat &)
|
||||||
LogStream<StandardStream> &operator<<(LogStream<StandardStream> &stream, const ResetFormat &)
|
|
||||||
{
|
{
|
||||||
if (!stream.supportsColor())
|
if (!stream.supportsColor())
|
||||||
return stream;
|
return stream;
|
||||||
|
@ -23,7 +23,6 @@ enum class StandardStream
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
|
||||||
class LogStream
|
class LogStream
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
@ -31,10 +30,37 @@ class LogStream
|
|||||||
using TraitsType = std::ostream::traits_type;
|
using TraitsType = std::ostream::traits_type;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
LogStream(StandardStream standardStream)
|
||||||
|
: m_standardStream{standardStream}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
LogStream(const LogStream &other)
|
||||||
|
: m_standardStream{other.m_standardStream}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
LogStream &operator=(const LogStream &other)
|
||||||
|
{
|
||||||
|
m_standardStream = other.m_standardStream;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
LogStream(LogStream &&other)
|
||||||
|
: m_standardStream{other.m_standardStream}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
LogStream &operator=(LogStream &&other)
|
||||||
|
{
|
||||||
|
m_standardStream = other.m_standardStream;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
bool supportsColor() const
|
bool supportsColor() const
|
||||||
{
|
{
|
||||||
const auto fileDescriptor =
|
const auto fileDescriptor =
|
||||||
(StandardStream == utils::StandardStream::Out)
|
(m_standardStream == utils::StandardStream::Out)
|
||||||
? STDOUT_FILENO
|
? STDOUT_FILENO
|
||||||
: STDERR_FILENO;
|
: STDERR_FILENO;
|
||||||
|
|
||||||
@ -43,35 +69,37 @@ class LogStream
|
|||||||
|
|
||||||
std::ostream &ostream()
|
std::ostream &ostream()
|
||||||
{
|
{
|
||||||
return (StandardStream == utils::StandardStream::Out)
|
return (m_standardStream == utils::StandardStream::Out)
|
||||||
? std::cout
|
? std::cout
|
||||||
: std::cerr;
|
: std::cerr;
|
||||||
}
|
}
|
||||||
|
|
||||||
LogStream &operator<<(short value);
|
inline LogStream &operator<<(short value);
|
||||||
LogStream &operator<<(unsigned short value);
|
inline LogStream &operator<<(unsigned short value);
|
||||||
LogStream &operator<<(int value);
|
inline LogStream &operator<<(int value);
|
||||||
LogStream &operator<<(unsigned int value);
|
inline LogStream &operator<<(unsigned int value);
|
||||||
LogStream &operator<<(long value);
|
inline LogStream &operator<<(long value);
|
||||||
LogStream &operator<<(unsigned long value);
|
inline LogStream &operator<<(unsigned long value);
|
||||||
LogStream &operator<<(long long value);
|
inline LogStream &operator<<(long long value);
|
||||||
LogStream &operator<<(unsigned long long value);
|
inline LogStream &operator<<(unsigned long long value);
|
||||||
LogStream &operator<<(float value);
|
inline LogStream &operator<<(float value);
|
||||||
LogStream &operator<<(double value);
|
inline LogStream &operator<<(double value);
|
||||||
LogStream &operator<<(long double value);
|
inline LogStream &operator<<(long double value);
|
||||||
LogStream &operator<<(bool value);
|
inline LogStream &operator<<(bool value);
|
||||||
LogStream &operator<<(const void *value);
|
inline LogStream &operator<<(const void *value);
|
||||||
LogStream &operator<<(const char *value);
|
inline LogStream &operator<<(const char *value);
|
||||||
LogStream &operator<<(std::basic_streambuf<CharacterType, TraitsType> *sb);
|
inline LogStream &operator<<(std::basic_streambuf<CharacterType, TraitsType> *sb);
|
||||||
LogStream &operator<<(std::ios_base &(*func)(std::ios_base &));
|
inline LogStream &operator<<(std::ios_base &(*func)(std::ios_base &));
|
||||||
LogStream &operator<<(std::basic_ios<CharacterType, TraitsType> &(*func)(std::basic_ios<CharacterType, TraitsType> &));
|
inline LogStream &operator<<(std::basic_ios<CharacterType, TraitsType> &(*func)(std::basic_ios<CharacterType, TraitsType> &));
|
||||||
LogStream &operator<<(std::basic_ostream<CharacterType, TraitsType> &(*func)(std::basic_ostream<CharacterType, TraitsType> &));
|
inline LogStream &operator<<(std::basic_ostream<CharacterType, TraitsType> &(*func)(std::basic_ostream<CharacterType, TraitsType> &));
|
||||||
|
|
||||||
|
private:
|
||||||
|
StandardStream m_standardStream;
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(short value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(short value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -79,8 +107,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(short value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(unsigned short value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned short value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -88,8 +115,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned short
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(int value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(int value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -97,8 +123,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(int value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(unsigned int value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned int value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -106,8 +131,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned int va
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(long value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -115,8 +139,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(unsigned long value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned long value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -124,8 +147,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned long v
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(long long value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long long value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -133,8 +155,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long long value
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(unsigned long long value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned long long value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -142,8 +163,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(unsigned long l
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(float value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(float value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -151,8 +171,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(float value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(double value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(double value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -160,8 +179,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(double value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(long double value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long double value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -169,8 +187,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(long double val
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(bool value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(bool value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -178,8 +195,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(bool value)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(const void *value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(const void *value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -187,8 +203,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(const void *val
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(const char *value)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(const char *value)
|
|
||||||
{
|
{
|
||||||
ostream() << value;
|
ostream() << value;
|
||||||
return *this;
|
return *this;
|
||||||
@ -196,8 +211,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(const char *val
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(std::basic_streambuf<CharacterType, TraitsType>* sb)
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_streambuf<CharacterType, TraitsType>* sb)
|
|
||||||
{
|
{
|
||||||
ostream() << sb;
|
ostream() << sb;
|
||||||
return *this;
|
return *this;
|
||||||
@ -205,8 +219,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_stre
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(std::ios_base &(*func)(std::ios_base &))
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::ios_base &(*func)(std::ios_base &))
|
|
||||||
{
|
{
|
||||||
ostream() << func;
|
ostream() << func;
|
||||||
return *this;
|
return *this;
|
||||||
@ -214,8 +227,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::ios_base &
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(std::basic_ios<CharacterType, TraitsType> &(*func)(std::basic_ios<CharacterType, TraitsType> &))
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_ios<CharacterType, TraitsType> &(*func)(std::basic_ios<CharacterType, TraitsType> &))
|
|
||||||
{
|
{
|
||||||
ostream() << func;
|
ostream() << func;
|
||||||
return *this;
|
return *this;
|
||||||
@ -223,8 +235,7 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_ios<
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream>
|
LogStream &LogStream::operator<<(std::basic_ostream<CharacterType, TraitsType> &(*func)(std::basic_ostream<CharacterType, TraitsType> &))
|
||||||
LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_ostream<CharacterType, TraitsType> &(*func)(std::basic_ostream<CharacterType, TraitsType> &))
|
|
||||||
{
|
{
|
||||||
ostream() << func;
|
ostream() << func;
|
||||||
return *this;
|
return *this;
|
||||||
@ -232,8 +243,8 @@ LogStream<StandardStream> &LogStream<StandardStream>::operator<<(std::basic_ostr
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template<StandardStream StandardStream, class CharacterType, class Traits, class Allocator>
|
template<class CharacterType, class Traits, class Allocator>
|
||||||
LogStream<StandardStream> &operator<<(LogStream<StandardStream> &stream, const std::basic_string<CharacterType, Traits, Allocator> &string)
|
LogStream &operator<<(LogStream &stream, const std::basic_string<CharacterType, Traits, Allocator> &string)
|
||||||
{
|
{
|
||||||
stream.ostream() << string;
|
stream.ostream() << string;
|
||||||
return stream;
|
return stream;
|
||||||
|
@ -37,8 +37,8 @@ class Logger
|
|||||||
Logger(Logger &&other);
|
Logger(Logger &&other);
|
||||||
Logger &operator=(Logger &&other);
|
Logger &operator=(Logger &&other);
|
||||||
|
|
||||||
LogStream<StandardStream::Out> &outputStream();
|
LogStream &outputStream();
|
||||||
LogStream<StandardStream::Err> &errorStream();
|
LogStream &errorStream();
|
||||||
|
|
||||||
void setWarningLevel(WarningLevel warningLevel);
|
void setWarningLevel(WarningLevel warningLevel);
|
||||||
|
|
||||||
@ -47,8 +47,8 @@ class Logger
|
|||||||
void logWarning(const Parser &parser, const std::string &message);
|
void logWarning(const Parser &parser, const std::string &message);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
LogStream<StandardStream::Out> m_outputStream;
|
LogStream m_outputStream;
|
||||||
LogStream<StandardStream::Err> m_errorStream;
|
LogStream m_errorStream;
|
||||||
|
|
||||||
WarningLevel m_warningLevel;
|
WarningLevel m_warningLevel;
|
||||||
};
|
};
|
||||||
|
@ -14,14 +14,18 @@ namespace utils
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
Logger::Logger()
|
Logger::Logger()
|
||||||
: m_warningLevel{Logger::WarningLevel::Normal}
|
: m_outputStream(StandardStream::Out),
|
||||||
|
m_errorStream(StandardStream::Err),
|
||||||
|
m_warningLevel{Logger::WarningLevel::Normal}
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
Logger::Logger(const Logger &other)
|
Logger::Logger(const Logger &other)
|
||||||
: m_warningLevel{other.m_warningLevel}
|
: m_outputStream{other.m_outputStream},
|
||||||
|
m_errorStream{other.m_errorStream},
|
||||||
|
m_warningLevel{other.m_warningLevel}
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,6 +33,8 @@ Logger::Logger(const Logger &other)
|
|||||||
|
|
||||||
Logger &Logger::operator=(const Logger &other)
|
Logger &Logger::operator=(const Logger &other)
|
||||||
{
|
{
|
||||||
|
m_outputStream = other.m_outputStream;
|
||||||
|
m_errorStream = other.m_errorStream;
|
||||||
m_warningLevel = other.m_warningLevel;
|
m_warningLevel = other.m_warningLevel;
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
@ -37,7 +43,9 @@ Logger &Logger::operator=(const Logger &other)
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
Logger::Logger(Logger &&other)
|
Logger::Logger(Logger &&other)
|
||||||
: m_warningLevel{other.m_warningLevel}
|
: m_outputStream{other.m_outputStream},
|
||||||
|
m_errorStream{other.m_errorStream},
|
||||||
|
m_warningLevel{other.m_warningLevel}
|
||||||
{
|
{
|
||||||
other.m_warningLevel = WarningLevel::Normal;
|
other.m_warningLevel = WarningLevel::Normal;
|
||||||
}
|
}
|
||||||
@ -46,6 +54,8 @@ Logger::Logger(Logger &&other)
|
|||||||
|
|
||||||
Logger &Logger::operator=(Logger &&other)
|
Logger &Logger::operator=(Logger &&other)
|
||||||
{
|
{
|
||||||
|
m_outputStream = other.m_outputStream;
|
||||||
|
m_errorStream = other.m_errorStream;
|
||||||
m_warningLevel = other.m_warningLevel;
|
m_warningLevel = other.m_warningLevel;
|
||||||
other.m_warningLevel = WarningLevel::Normal;
|
other.m_warningLevel = WarningLevel::Normal;
|
||||||
|
|
||||||
@ -54,14 +64,14 @@ Logger &Logger::operator=(Logger &&other)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
LogStream<StandardStream::Out> &Logger::outputStream()
|
LogStream &Logger::outputStream()
|
||||||
{
|
{
|
||||||
return m_outputStream;
|
return m_outputStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
LogStream<StandardStream::Err> &Logger::errorStream()
|
LogStream &Logger::errorStream()
|
||||||
{
|
{
|
||||||
return m_errorStream;
|
return m_errorStream;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user