![]() | ![]() | ![]() | SOUP Reference Manual | ![]() |
---|
#define WSDL_LOG_DOMAIN_STUBS #define WSDL_LOG_DOMAIN_SKELS #define WSDL_LOG_DOMAIN_HEADERS #define WSDL_LOG_DOMAIN_COMMON #define WSDL_LOG_DOMAIN_PARSER #define WSDL_LOG_DOMAIN_THREAD #define WSDL_LOG_DOMAIN_MAIN void wsdl_parse_debug_domain_string (const guchar *string); void wsdl_parse_debug_level_string (const guchar *string); void wsdl_debug (guint domain, guint level, const guchar *format, ...);
#define WSDL_LOG_DOMAIN_STUBS 1<<0
The bit to set to output debugging messages to do with stub generation
#define WSDL_LOG_DOMAIN_SKELS 1<<1
The bit to set to output debugging messages to do with server skeleton generation
#define WSDL_LOG_DOMAIN_HEADERS 1<<2
The bit to set to output debugging messages to do with header generation
#define WSDL_LOG_DOMAIN_COMMON 1<<3
The bit to set to output debugging messages to do with common code generation
#define WSDL_LOG_DOMAIN_PARSER 1<<4
The bit to set to output debugging messages to do with parsing of the WSDL XML file.
#define WSDL_LOG_DOMAIN_THREAD 1<<5
The bit to set to output debugging messages to do with threading together the elements of a WSDL specification.
#define WSDL_LOG_DOMAIN_MAIN 1<<6
The bit to set to output debugging messages to do with the main parser driver.
void wsdl_parse_debug_domain_string (const guchar *string);
Parses string, and sets the internal logging mask.
string : | a string containing a colon-separated set of tokens |
void wsdl_parse_debug_level_string (const guchar *string);
Parses string and sets the internal logging priority level.
string : | a string containing a colon-separated set of tokens |
void wsdl_debug (guint domain, guint level, const guchar *format, ...);
If domain and level match bits set in the internal logging mask and level, then g_logv() is called with arguments "SOUP-WSDL", level, format, and a va_list parameter consisting of ... .
domain : | an integer with one or more WSDL_LOG_DOMAIN_ bits set |
level : | an integer with one or more G_LOG_LEVEL_ bits set |
format : | a printf-style string |
... : | Arguments required by format |
<<< wsdl-thread | Soup WSDL Runtime >>> |