Преглед на файлове

* fixed bug in formatting of the 'line' property

master
bergmann преди 6 години
родител
ревизия
b9a9392f03
променени са 1 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. +4
    -4
      src/cpplogging/manager/consumer/formatting.cpp

+ 4
- 4
src/cpplogging/manager/consumer/formatting.cpp Целия файл

@@ -633,21 +633,21 @@ void consumer::write_formatted(const log_entry& e, const format_type& f, std::os
has_line_end = false;
switch (i.format)
{
case value_format::decimal:
os << e.line;
break;
case value_format::hex_lower:
os << std::hex
<< e.line
<< std::dec;
break;
default:
case value_format::hex_upper:
os << std::hex
<< std::uppercase
<< e.line
<< std::nouppercase
<< std::dec;
break;
default:
os << e.line;
break;
}
break;



Зареждане…
Отказ
Запис