source: s10k/CommonLibs/plog/Formatters/MessageOnlyFormatter.h@ 1183

Last change on this file since 1183 was 1073, checked in by s10k, 7 years ago

added XML Tools latest version (2.0d) and s10k's common libs

File size: 434 bytes
Line 
1#pragma once
2#include <plog/Record.h>
3#include <plog/Util.h>
4
5namespace plog
6{
7 class MessageOnlyFormatter
8 {
9 public:
10 static util::nstring header()
11 {
12 return util::nstring();
13 }
14
15 static util::nstring format(const Record& record)
16 {
17 util::nstringstream ss;
18 ss << record.getMessage() << PLOG_NSTR("\n");
19
20 return ss.str();
21 }
22 };
23}
Note: See TracBrowser for help on using the repository browser.