[reflection] Use coop handles for MonoMethod icalls (#4272)
[mono.git] / mono / io-layer / io-trace.h
1 /*
2  * io-trace.h: tracing macros
3  *
4  * Authors:
5  *  Marek Habersack <grendel@twistedcode.net>
6  *
7  * Copyright 2016 Xamarin, Inc (http://xamarin.com/)
8  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
9  */
10
11 #ifndef __IO_TRACE_H
12
13 #ifdef DISABLE_IO_LAYER_TRACE
14 #define MONO_TRACE(...)
15 #else
16 #include "mono/utils/mono-logger-internals.h"
17 #define MONO_TRACE(...) mono_trace (__VA_ARGS__)
18 #endif
19
20 #endif