PowerCenter
- PowerCenter 10.5
- All Products
void INFA_OutputSessionLogMsg( void * dllContext, time_t curTime, INFA_UINT32 severity, const INFA_UNICHAR * msgCategoryName, INFA_UINT32 msgCode, const INFA_UNICHAR * msg, const INFA_UNICHAR * threadDescription);
Parameter
| Data Type
| Description
|
---|---|---|
dllContext
| Unspecified
| User-defined information specific to the shared library. You can use this parameter to store information related to network connection or to allocate memory needed during the course of handling the session log output. The shared library must allocate and deallocate any memory associated with this parameter.
|
curTime
| time_t
| Time that the Integration Service logs the event.
|
severity
| unsigned int
| Code that indicates the type of the log event message. The event logs use the following severity codes:
32: Debug Messages
8: Informational Messages
2: Error Messages
4: Warning Messages
|
msgCategoryName
| constant
unsigned short
| Code prefix that indicates the category of the log event message.
In the following example message, the string
BLKR
is the value passed in the msgCategoryName parameter.
|
msgCode
| unsigned int
| Number that identifies the log event message.
In the following example message, the string
16003
is the value passed in the msgCode parameter.
|
msg
| constant
unsigned short
| Text of the log event message.
In the following example message, the string
Initialization completed successfully
is the value passed in the msg parameter.
|
threadDescription
| constant
unsigned short
| Code that indicates which thread is generating the event log.
In the following example message, the string
READER_1_1_1 is the value passed in the threadDescription parameter.
|