Changeset 146:aef0b98e0760 in rrlib_logging
- Timestamp:
- 06.02.2021 21:17:15 (17 months ago)
- Branch:
- 17.03
- Children:
- 147:2a1e06eca359, 148:6f794e779e60
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configuration/tConfiguration.h
r111 r146 174 174 } 175 175 176 inline consttLogLevel MaxMessageLevel() const176 inline tLogLevel MaxMessageLevel() const 177 177 { 178 178 return this->max_message_level; -
configuration/tDomainRegistry.h
r119 r146 159 159 * \returns Whether the columns in prefix output should be padded or not 160 160 */ 161 inline constbool GetPadPrefixColumns() const161 inline bool GetPadPrefixColumns() const 162 162 { 163 163 return this->pad_prefix_columns; … … 187 187 * \returns Whether the rows should be padded or not 188 188 */ 189 inline constbool GetPadMultiLineMessages() const189 inline bool GetPadMultiLineMessages() const 190 190 { 191 191 return this->pad_multi_line_messages; -
messages/tFormattingBuffer.cpp
r127 r146 90 90 91 91 tFormattingBuffer::tFormattingBuffer(const tFormattingBuffer &other) : 92 std::streambuf(other), 92 93 sink(other.sink), 93 94 ends_with_newline(other.ends_with_newline), … … 106 107 if (this != &other) 107 108 { 109 std::streambuf::operator=(other); 108 110 this->sink = other.sink; 109 111 this->ends_with_newline = other.ends_with_newline;
Note: See TracChangeset
for help on using the changeset viewer.