Molybden API
Loading...
Searching...
No Matches
log_level.hpp
1// Copyright (c) 2000-2024 TeamDev. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOLYBDEN_INTERNAL_LOG_LEVEL_HPP
6#define MOLYBDEN_INTERNAL_LOG_LEVEL_HPP
7
8#include "molybden/base/log_level.hpp"
9
10namespace molybden {
11namespace internal {
12
17constexpr int LEVEL_INFO = static_cast<int>(LogLevel::kInfo);
18constexpr int LEVEL_ERROR = static_cast<int>(LogLevel::kError);
19constexpr int LEVEL_WARNING = static_cast<int>(LogLevel::kWarning);
20constexpr int LEVEL_FATAL = static_cast<int>(LogLevel::kFatal);
21
22} // namespace internal
23} // namespace molybden
24
25#endif // MOLYBDEN_INTERNAL_LOG_LEVEL_HPP