mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 22:32:59 +03:00
добавлен debug_logger
This commit is contained in:
parent
3db060888c
commit
7ea582ce17
0
program/debug_logger.cpp
Normal file
0
program/debug_logger.cpp
Normal file
12
program/debug_logger.h
Normal file
12
program/debug_logger.h
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
// Логирование и отладка - предоставляет инструменты для отслеживания ошибок и оптимизации производительности
|
||||||
|
class DebugLogger {
|
||||||
|
public:
|
||||||
|
// Записывает сообщение в лог
|
||||||
|
static void log(const std::string& message);
|
||||||
|
|
||||||
|
// Записывает предупреждение в лог
|
||||||
|
static void warn(const std::string& message);
|
||||||
|
|
||||||
|
// Записывает ошибку в лог
|
||||||
|
static void error(const std::string& message);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user