summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-fault.c
diff options
context:
space:
mode:
authorGravatar m0gg2007-11-03 22:40:09 +0000
committerGravatar m0gg2007-11-03 22:40:09 +0000
commit8a6946b18003fae6400a137389f0cb13d0ac4bd6 (patch)
tree1fb0e6f58de5596f8dae00998da18472fb4952a1 /libcsoap/soap-fault.c
parentc1a7b2dabdc691139b744f0d4750f3b797b69073 (diff)
downloadcsoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.gz
csoap-8a6946b18003fae6400a137389f0cb13d0ac4bd6.tar.bz2
Split nanoHTTP and cSOAP logging
Diffstat (limited to 'libcsoap/soap-fault.c')
-rw-r--r--libcsoap/soap-fault.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libcsoap/soap-fault.c b/libcsoap/soap-fault.c
index 3341f7a..ab56979 100644
--- a/libcsoap/soap-fault.c
+++ b/libcsoap/soap-fault.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-fault.c,v 1.16 2006/12/14 19:36:49 m0gg Exp $
+* $Id: soap-fault.c,v 1.17 2007/11/03 22:40:09 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -33,11 +33,11 @@
#include <errno.h>
#endif
-#include <libxml/xpath.h>
-
#include <nanohttp/nanohttp-error.h>
-#include <nanohttp/nanohttp-logging.h>
+#include <libxml/tree.h>
+
+#include "soap-logging.h"
#include "soap-xml.h"
#include "soap-env.h"
#include "soap-ctx.h"
@@ -91,7 +91,7 @@ soap_fault_build(int fault_code, const char *fault_string, const char *fault_act
char *buffer;
xmlDocPtr fault; /* result */
- log_verbose1("Build fault");
+ log_verbose("Build fault");
switch (fault_code)
{
@@ -121,10 +121,10 @@ soap_fault_build(int fault_code, const char *fault_string, const char *fault_act
if (detail)
bufferlen += strlen(detail);
- log_verbose2("Creating buffer with %d bytes", bufferlen);
+ log_verbose("Creating buffer with %d bytes", bufferlen);
if (!(buffer = (char *) malloc(bufferlen)))
{
- log_error2("malloc failed (%s)", errno);
+ log_error("malloc failed (%s)", errno);
return NULL;
}
@@ -139,11 +139,11 @@ soap_fault_build(int fault_code, const char *fault_string, const char *fault_act
if (fault == NULL)
{
- log_error1("Cannot create XML document!");
+ log_error("Cannot create XML document!");
return soap_fault_build(fault_code, "Cannot create fault object in XML", soap_server_get_name(), NULL);
}
- log_verbose2("Returning fault (%p)", fault);
+ log_verbose("Returning fault (%p)", fault);
return fault;
}