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
  • Loading branch information
jmigual authored Jul 11, 2023
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
Expand Up @@ -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)
Expand Down

0 comments on commit 6308d09

Please sign in to comment.