Logger System 0.1.3
High-performance C++20 thread-safe logging system with asynchronous capabilities
Loading...
Searching...
No Matches
kcenon::logger::SyncWriter Concept Reference

Concept for synchronous writers. More...

#include <writer_category.h>

Concept definition

template<typename T>
concept kcenon::logger::SyncWriter = std::is_base_of_v<log_writer_interface, T> &&
std::is_base_of_v<sync_writer_tag, T>
Concept for synchronous writers.

Detailed Description

Concept for synchronous writers.

Template Parameters
TType to check

Requires the type to be a log writer and tagged as synchronous.

Since
1.4.0

Definition at line 212 of file writer_category.h.