CCF
Loading...
Searching...
No Matches
include
ccf
ds
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
5
#include <cstdint>
6
namespace
ccf
7
{
8
enum class
LoggerLevel
: uint8_t
9
{
10
TRACE
,
11
DEBUG
,
// events useful for debugging
12
INFO
,
// important events that should be logged even in release mode
13
FAIL
,
// survivable failures that should always be logged
14
FATAL
,
// fatal errors that may be non-recoverable
15
MAX_LOG_LEVEL
16
};
17
}
ccf
Definition
app_interface.h:14
ccf::LoggerLevel
LoggerLevel
Definition
logger_level.h:9
ccf::LoggerLevel::FATAL
@ FATAL
ccf::LoggerLevel::TRACE
@ TRACE
ccf::LoggerLevel::INFO
@ INFO
ccf::LoggerLevel::MAX_LOG_LEVEL
@ MAX_LOG_LEVEL
ccf::LoggerLevel::FAIL
@ FAIL
ccf::LoggerLevel::DEBUG
@ DEBUG
Generated by
1.9.8