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
5#include <cstdint>
6namespace 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
16 };
17}
Definition app_interface.h:14
LoggerLevel
Definition logger_level.h:9