NonStop SOAP 4.1 User's Manual

linenumber
specifies the line number where the message is generated.
format
is the string format of the message
The axutil_log_free()Function
Synopsis:
AXIS2_EXTERN void axutil_log_free
(axutil_allocator_t *allocator,
struct axutil_log *log)
Description:
This function releases the log files.
Parameters:
allocator
is the allocator to be used. It is a mandatory parameter and cannot have a Null value.
log
is a pointer to the log structure that is freed.
Return Values:
Void.
The axutil_log_create()Function
Synopsis:
AXIS2_EXTERN axutil_log_t * axutil_log_create
(axutil_allocator_t *allocator,
axutil_log_ops_t *ops,
const axis2_char_t *stream_name)
Description:
This function creates a log structure.
Parameters:
allocator
is the allocator to be used. It is a mandatory parameter and cannot have a Null value.
ops
is an options structure to set the log options. It is a mandatory parameter and cannot have a
Null value.
stream_name
is the name of the file to which the log is returned.
Return Values:
This function returns a pointer to the newly created log structure.
The axutil_log_create_default()Function
Synopsis:
AXIS2_EXTERN axutil_log_t * axutil_log_create_default
(axutil_allocator_t *allocator)
Description:
Creates the log structure with default settings.
Parameters:
-allocator
is the allocator to be used. It is a mandatory parameter and cannot have a Null value.
Utilities 377