Logger System 0.1.3
High-performance C++20 thread-safe logging system with asynchronous capabilities
Loading...
Searching...
No Matches
compatibility.h
Go to the documentation of this file.
1// BSD 3-Clause License
2// Copyright (c) 2021-2025, 🍀☀🌕🌥 🌊
3// See the LICENSE file in the project root for full license information.
4
13#pragma once
14
15// Forward declare legacy namespace so that aliasing works without including
16// heavier logger headers.
17namespace logger_system {}
18
19// Primary alias: expose legacy logger_system as kcenon::logger.
20namespace kcenon {
21namespace logger = ::logger_system;
22} // namespace kcenon
23
24// Additional legacy aliases kept for downstream projects.
25namespace logger_module = ::logger_system;