From 72654cf02a46a510e4e3d934c40ad4f0995322fd Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sat, 31 Oct 2020 22:08:38 +0000 Subject: [PATCH] Fix missing Log.h handling in UDPSocket.cpp --- UDPSocket.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UDPSocket.cpp b/UDPSocket.cpp index 510c8a2..ad8a0eb 100644 --- a/UDPSocket.cpp +++ b/UDPSocket.cpp @@ -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