Turn off debug logging in client impl

Accidentally left in #147
This commit is contained in:
Marc Di Luzio 2019-06-01 11:00:33 +01:00 committed by GitHub
parent a837b8630c
commit a5e00bc94e

View File

@ -67,7 +67,7 @@ POSSIBILITY OF SUCH DAMAGE.
#define LOG_ERROR fprintf(stderr, "ERROR: %s \n", error_string)
#endif
#ifdef DO_TRACE
#if DO_TRACE
#define TRACE(...) fprintf(stderr, __VA_ARGS__)
#else
#define TRACE(...)