ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/CommonLibs/plog/Formatters/FuncMessageFormatter.h
(Generate patch)

Comparing s10k/CommonLibs/plog/Formatters/FuncMessageFormatter.h (file contents):
Revision 1073 by s10k, Thu Oct 5 17:48:32 2017 UTC vs.
Revision 1096 by s10k, Sat Dec 30 14:40:33 2017 UTC

# Line 1 | Line 1
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 < }
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 > }

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)