CCF
Loading...
Searching...
No Matches
gov_logging.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 "ccf/ds/logger.h"
6
7#ifndef CCF_DISABLE_VERBOSE_LOGGING
8# define GOV_TRACE_FMT CCF_LOG_FMT(TRACE, "gov")
9# define GOV_DEBUG_FMT CCF_LOG_FMT(DEBUG, "gov")
10#else
11# define GOV_TRACE_FMT(...) ((void)0)
12# define GOV_DEBUG_FMT(...) ((void)0)
13#endif
14
15#define GOV_INFO_FMT CCF_LOG_FMT(INFO, "gov")
16#define GOV_FAIL_FMT CCF_LOG_FMT(FAIL, "gov")
17#define GOV_FATAL_FMT CCF_LOG_FMT(FATAL, "gov")