See More

/* * 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 #include #include #include #ifdef LOG4CPP_HAVE_SSTREAM #include #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::LOG4CPP_UNIQUE_PTR create_basic_layout(const FactoryParams& params) { return std::LOG4CPP_UNIQUE_PTR(new BasicLayout); } } // namespace log4cpp