Skip to content

Commit 63d122e

Browse files
committed
Disable parallel-rdp logging
1 parent 3af7077 commit 63d122e

File tree

1 file changed

+6
-3
lines changed
  • src/contrib/parallel-rdp/parallel-rdp-standalone/util

1 file changed

+6
-3
lines changed

src/contrib/parallel-rdp/parallel-rdp-standalone/util/logging.hpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ void debug_output_log(const char *tag, const char *fmt, ...);
9090
} while (false)
9191
#endif
9292

93-
#define LOGE(...) do { if (!::Util::interface_log("[ERROR]: ", __VA_ARGS__)) { LOGE_FALLBACK(__VA_ARGS__); }} while(0)
94-
#define LOGW(...) do { if (!::Util::interface_log("[WARN]: ", __VA_ARGS__)) { LOGW_FALLBACK(__VA_ARGS__); }} while(0)
95-
#define LOGI(...) do { if (!::Util::interface_log("[INFO]: ", __VA_ARGS__)) { LOGI_FALLBACK(__VA_ARGS__); }} while(0)
93+
/* #define LOGE(...) do { if (!::Util::interface_log("[ERROR]: ", __VA_ARGS__)) { LOGE_FALLBACK(__VA_ARGS__); }} while(0) */
94+
/* #define LOGW(...) do { if (!::Util::interface_log("[WARN]: ", __VA_ARGS__)) { LOGW_FALLBACK(__VA_ARGS__); }} while(0) */
95+
/* #define LOGI(...) do { if (!::Util::interface_log("[INFO]: ", __VA_ARGS__)) { LOGI_FALLBACK(__VA_ARGS__); }} while(0) */
9696

97+
#define LOGE(...) do {} while(0)
98+
#define LOGW(...) do {} while(0)
99+
#define LOGI(...) do {} while(0)

0 commit comments

Comments
 (0)