MU Library
logger_const.hpp
Go to the documentation of this file.
1 // SPDX-License-Identifier: Apache-2.0
2 // Copyright 2024 XCENA Inc.
3 
4 #pragma once
5 
6 namespace mu
7 {
8 
9 enum class LogLevel
10 {
11  Trace,
12  Debug,
13  Info,
14  Warn,
15  Error,
16  Critical,
17  None,
18 };
19 
20 } // namespace mu
Definition: assert.hpp:9