You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* #define DEBUG_STAMP *//* Uncomment to debug sending (in file SENT.log) receiving (in file RECV.log) and time-stamped operations (in file TEST.log) */
962
962
963
+
#ifdef DEBUG
964
+
# include<syslog.h>
965
+
#endif
966
+
963
967
#ifdef __cplusplus
964
968
extern"C" {
965
969
#endif
@@ -1908,7 +1912,8 @@ typedef unsigned short soap_ssl_flags;
1908
1912
1909
1913
#ifdef SOAP_DEBUG
1910
1914
# ifndef SOAP_MESSAGE
1911
-
# defineSOAP_MESSAGE fprintf
1915
+
# defineSOAP_MESSAGE(USELESS_FDEBUG, ...) \
1916
+
syslog(LOG_NOTICE, ##__VA_ARGS__);
1912
1917
# endif
1913
1918
# ifndef DBGLOG
1914
1919
# ifdef DEBUG_STAMP
@@ -1947,28 +1952,13 @@ typedef unsigned short soap_ssl_flags;
0 commit comments