Adding the Custom Information to the Client Executable
Your client executable application can put information into any custom field you add. This is done through the MessageResponse object. For example:
// If extra information should be logged along with the processing of the message,
// the MessageResponse object should be filled accordingly. Using the example
// below, "test_field" is the name of the column and "Message was processed
// successfully!" is the information that will be logged when a message is
// processed.
MessageResponse.AddLogValue("test_field","Message was processed successfully!");
// Iguana will attempt to insert the data into the database if the log tables allow it
// If the fields are not present, the data will be appended to the debug field of the log.