Menu

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

Download this file

27 lines (23 with data), 771 Bytes

 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
/*
* LoggingEvent.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/LoggingEvent.hh>
#include <log4cpp/threading/Threading.hh>
namespace log4cpp {
LoggingEvent::LoggingEvent(const std::string& categoryName,
const std::string& message,
const std::string& ndc,
Priority::Value priority) :
categoryName(categoryName),
message(message),
ndc(ndc),
priority(priority),
threadName(threading::getThreadId()) {
}
}
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.