1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-14 03:37:16 +01:00
SqMod/vendor/POCO/Foundation/samples/Logger/src/Logger.cpp

64 lines
1.8 KiB
C++
Raw Normal View History

//
// Logger.cpp
//
// This class demonstrates the Logger, PatternFormatter, FormattingChannel,
// ConsoleChannel and FileChannel classes.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Logger.h"
#include "Poco/PatternFormatter.h"
#include "Poco/FormattingChannel.h"
#include "Poco/ConsoleChannel.h"
#include "Poco/FileChannel.h"
#include "Poco/Message.h"
using Poco::Logger;
using Poco::PatternFormatter;
using Poco::FormattingChannel;
using Poco::ConsoleChannel;
using Poco::FileChannel;
using Poco::Message;
int main(int argc, char** argv)
{
// set up two channel chains - one to the
// console and the other one to a log file.
FormattingChannel* pFCConsole = new FormattingChannel(new PatternFormatter("%s: %p: %t"));
pFCConsole->setChannel(new ConsoleChannel);
pFCConsole->open();
FormattingChannel* pFCFile = new FormattingChannel(new PatternFormatter("%Y-%m-%d %H:%M:%S.%c %N[%P]:%s:%q:%t"));
pFCFile->setChannel(new FileChannel("sample.log"));
pFCFile->open();
// create two Logger objects - one for
// each channel chain.
Logger& consoleLogger = Logger::create("ConsoleLogger", pFCConsole, Message::PRIO_INFORMATION);
Logger& fileLogger = Logger::create("FileLogger", pFCFile, Message::PRIO_WARNING);
// log some messages
consoleLogger.error("An error message");
fileLogger.error("An error message");
consoleLogger.warning("A warning message");
fileLogger.error("A warning message");
consoleLogger.information("An information message");
fileLogger.information("An information message");
poco_information(consoleLogger, "Another informational message");
poco_warning_f2(consoleLogger, "A warning message with arguments: %d, %d", 1, 2);
Logger::get("ConsoleLogger").error("Another error message");
return 0;
}