32class ARCCORE_TRACE_EXPORT StandaloneTraceMessage
35 StandaloneTraceMessage() =
default;
38 StandaloneTraceMessage& operator=(
const StandaloneTraceMessage& from);
41 std::ostream& file()
const {
return m_stream; }
43 int level()
const {
return m_level; }
44 int color()
const {
return m_color; }
46 std::string value()
const {
return m_stream.str(); }
49 mutable std::ostringstream m_stream;
53 int m_level = TraceMessage::DEFAULT_LEVEL;