Fix missing Log.h handling in UDPSocket.cpp

This commit is contained in:
Jonathan Naylor 2020-10-31 22:08:38 +00:00
parent a0d60b894d
commit 72654cf02a
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#if defined(HAVE_LOG_H)
#include "Log.h"
#else
#define LogMessage(fmt, ...) ::fprintf(stderr, fmt "\n", ## __VA_ARGS__)
#define LogError(fmt, ...) ::fprintf(stderr, fmt "\n", ## __VA_ARGS__)
#define LogInfo(fmt, ...) ::fprintf(stderr, fmt "\n", ## __VA_ARGS__)
#endif