2023-10-03 20:37:00 +02:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ILogger.h"
|
|
|
|
#include "os.h"
|
|
|
|
#include "irrString.h"
|
|
|
|
#include "IEventReceiver.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Class for logging messages, warnings and errors to stdout
|
|
|
|
class CLogger : public ILogger
|
|
|
|
{
|
|
|
|
public:
|
2024-03-20 19:35:52 +01:00
|
|
|
CLogger(IEventReceiver *r);
|
2023-10-03 20:37:00 +02:00
|
|
|
|
|
|
|
//! Returns the current set log level.
|
|
|
|
ELOG_LEVEL getLogLevel() const override;
|
|
|
|
|
|
|
|
//! Sets a new log level. void setLogLevel(ELOG_LEVEL ll) override;
|
|
|
|
void setLogLevel(ELOG_LEVEL ll) override;
|
|
|
|
|
|
|
|
//! Prints out a text into the log
|
2024-03-20 19:35:52 +01:00
|
|
|
void log(const c8 *text, ELOG_LEVEL ll = ELL_INFORMATION) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
|
|
|
//! Prints out a text into the log
|
2024-03-20 19:35:52 +01:00
|
|
|
void log(const c8 *text, const c8 *hint, ELOG_LEVEL ll = ELL_INFORMATION) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
|
|
|
//! Sets a new event receiver
|
2024-03-20 19:35:52 +01:00
|
|
|
void setReceiver(IEventReceiver *r);
|
2023-10-03 20:37:00 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
ELOG_LEVEL LogLevel;
|
2024-03-20 19:35:52 +01:00
|
|
|
IEventReceiver *Receiver;
|
2023-10-03 20:37:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace
|