source: s10k/CommonLibs/plog/Formatters/FuncMessageFormatter.h@ 1089

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

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

File size: 534 bytes
Line 
1#pragma once
2#include <plog/Record.h>
3#include <plog/Util.h>
4
5namespace plog
6{
7 class FuncMessageFormatter
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.getFunc() << PLOG_NSTR("@") << record.getLine() << PLOG_NSTR(": ") << record.getMessage() << PLOG_NSTR("\n");
19
20 return ss.str();
21 }
22 };
23}
Note: See TracBrowser for help on using the repository browser.