-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBasicLayout.cpp
More file actions
43 lines (34 loc) · 1.08 KB
/
BasicLayout.cpp
File metadata and controls
43 lines (34 loc) · 1.08 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
43
/*
* BasicLayout.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/BasicLayout.hh>
#include <log4cpp/Priority.hh>
#include <log4cpp/FactoryParams.hh>
#include <memory>
#ifdef LOG4CPP_HAVE_SSTREAM
#include <sstream>
#endif
namespace log4cpp {
BasicLayout::BasicLayout() {
}
BasicLayout::~BasicLayout() {
}
std::string BasicLayout::format(const LoggingEvent& event) {
std::ostringstream message;
const std::string& priorityName = Priority::getPriorityName(event.priority);
message << event.timeStamp.getSeconds() << " " << priorityName << " "
<< event.categoryName << " " << event.ndc << ": "
<< event.message << std::endl;
return message.str();
}
std::auto_ptr<Layout> create_basic_layout(const FactoryParams& params)
{
return std::auto_ptr<Layout>(new BasicLayout);
}
}