summaryrefslogtreecommitdiffstats
path: root/libcsoap/csoaplog.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcsoap/csoaplog.c')
-rw-r--r--libcsoap/csoaplog.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libcsoap/csoaplog.c b/libcsoap/csoaplog.c
index 3d5b127..2bc78e2 100644
--- a/libcsoap/csoaplog.c
+++ b/libcsoap/csoaplog.c
@@ -9,13 +9,14 @@ void _SoapLogWrite(SoapLogLevel level,
const char* format,
va_list ap)
{
+ /*
char buffer[1054];
char buffer2[1054];
sprintf(buffer, "[%s] [%d] %s\n", function, level, format);
vsprintf(buffer2, buffer, ap);
-/* printf(buffer2);
- fflush(stdout);
-*/
+ printf(buffer2);
+ fflush(stdout);
+ */
}