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
5namespace ccf
6{
8 {
10 DEBUG, // events useful for debugging
11 INFO, // important events that should be logged even in release mode
12 FAIL, // survivable failures that should always be logged
13 FATAL, // fatal errors that may be non-recoverable
15 };
16}
Definition app_interface.h:14
LoggerLevel
Definition logger_level.h:8
@ INFO
Definition logger_level.h:11
@ DEBUG
Definition logger_level.h:10
@ FAIL
Definition logger_level.h:12
@ FATAL
Definition logger_level.h:13
@ MAX_LOG_LEVEL
Definition logger_level.h:14
@ TRACE
Definition logger_level.h:9