Event-Driven Programming in C++ 1.0
A case study on event-driven programming in C++
Loading...
Searching...
No Matches
logger.hpp File Reference

Declaration of the Logger class for logging messages. More...

#include <string>

Go to the source code of this file.

Classes

class  common::Logger
 A simple logging utility. More...
 

Namespaces

namespace  common
 Contains shared utilities and helper functions used across the project.
 

Enumerations

enum class  common::LogLevel { common::Debug , common::Info , common::Warning , common::Error }
 Enumeration of log levels. More...
 

Detailed Description

Declaration of the Logger class for logging messages.

This file declares the Logger class within the common namespace. The Logger class provides static methods for logging messages at various log levels. Messages are output to the standard output stream (for Debug, Info, and Warning) or to the standard error stream (for Error).