Menu

[2d617b]: / src / SimpleLayout.cpp  Maximize  Restore  History

Download this file

43 lines (34 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* SimpleLayout.cpp
*
* Copyright 2000, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
* Copyright 2000, Bastiaan Bakker. All rights reserved.
*
* See the COPYING file for the terms of usage and distribution.
*/
#include "PortabilityImpl.hh"
#include <log4cpp/SimpleLayout.hh>
#include <log4cpp/Priority.hh>
#include <ios>
#ifdef LOG4CPP_HAVE_SSTREAM
#include <sstream>
#endif
#include <memory>
#include <log4cpp/FactoryParams.hh>
namespace log4cpp {
SimpleLayout::SimpleLayout() {
}
SimpleLayout::~SimpleLayout() {
}
std::string SimpleLayout::format(const LoggingEvent& event) {
std::ostringstream message;
const std::string& priorityName = Priority::getPriorityName(event.priority);
message.width(Priority::MESSAGE_SIZE);message.setf(std::ios::left);
message << priorityName << ": " << event.message << std::endl;
return message.str();
}
std::LOG4CPP_UNIQUE_PTR<Layout> create_simple_layout(const FactoryParams& params)
{
return std::LOG4CPP_UNIQUE_PTR<Layout>(new SimpleLayout);
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.