CCF
Loading...
Searching...
No Matches
merklecpp_trace.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// Use the CCF logging infrastructure for merklecpp traces.
8#define MERKLECPP_TRACE_ENABLED
9#define MERKLECPP_TRACE(X) \
10 { \
11 X; \
12 };
13#define MERKLECPP_TOUT CCF_LOG_OUT(TRACE, "merkl")