NBConnector WriteActivityLog Method (String, NBSeverity, Dictionary String, String )IBM Integration Bus
Writes an entry to activity log using the context that this connector is being run in.

Namespace: IBM.Broker.Plugin.Connector
Assembly: IBM.Broker.Plugin (in IBM.Broker.Plugin.dll) Version: 9.0.0.0
Syntax

public void WriteActivityLog(
	string message,
	NBSeverity severity,
	Dictionary<string, string> extraTags
)

Parameters

message
Type: OnlineSystem String
The message sent to the activity log.
severity
Type: IBM.Broker.Plugin NBSeverity
The severity of the message.
extraTags
Type: OnlineSystem.Collections.Generic Dictionary OnlineString, OnlineString 
A Dictionary of names and values which will be used to tag this log message.
Remarks

This method writes the contents of message as an insert into one of three built in messages:

For Information severities it uses a message numbered 12068.

For Warning severities it uses a message numbered 12069.

For Error severities it uses a message numbered 12070.

See Also