ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/CommonLibs/plog/Formatters/FuncMessageFormatter.h
Revision: 1096
Committed: Sat Dec 30 14:40:33 2017 UTC (7 years, 9 months ago) by s10k
Content type: text/x-chdr
File size: 511 byte(s)
Log Message:
Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS)

File Contents

# Content
1 #pragma once
2 #include <plog/Record.h>
3 #include <plog/Util.h>
4
5 namespace 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 }