소스 검색

* 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;



불러오는 중...
취소
저장