Database System 0.1.0
Advanced C++20 Database System with Multi-Backend Support
Loading...
Searching...
No Matches
fallback_logger_backend.h File Reference

Fallback logger backend using std::cout and std::ofstream. More...

#include "logger_backend.h"
#include <fstream>
#include <mutex>
Include dependency graph for fallback_logger_backend.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  database::integrated::adapters::backends::fallback_logger_backend
 Basic logger backend using standard C++ streams. More...
 

Namespaces

namespace  database
 
namespace  database::integrated
 
namespace  database::integrated::adapters
 
namespace  database::integrated::adapters::backends
 

Detailed Description

Fallback logger backend using std::cout and std::ofstream.

Used when common_system logging is not available. Provides basic logging functionality using standard C++ streams.

Features:

  • Console output via std::cout
  • File output via std::ofstream
  • Thread-safe operation with mutex
  • Timestamp formatting

Definition in file fallback_logger_backend.h.