Skip to content

Commit

Permalink
core: fix logging macro not used in sio_socket.cpp (#401)
Browse files Browse the repository at this point in the history
jmigual authored Jul 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 75e0589 commit 6308d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sio_socket.cpp
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
#include <cstdarg>
#include <functional>

#if DEBUG || _DEBUG
#if (DEBUG || _DEBUG) && !defined(SIO_DISABLE_LOGGING)
#define LOG(x) std::cout << x
#else
#define LOG(x)

0 comments on commit 6308d09

Please sign in to comment.