CCF
Loading...
Searching...
No Matches
logger_level.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
6{
8 DEBUG, // events useful for debugging
9 INFO, // important events that should be logged even in release mode
10 FAIL, // survivable failures that should always be logged
11 FATAL, // fatal errors that may be non-recoverable
13};
LoggerLevel
Definition logger_level.h:6
@ DEBUG
Definition logger_level.h:8
@ FATAL
Definition logger_level.h:11
@ INFO
Definition logger_level.h:9
@ TRACE
Definition logger_level.h:7
@ FAIL
Definition logger_level.h:10
@ MAX_LOG_LEVEL
Definition logger_level.h:12