Interface ITrace
The ITrace interface is used internally by ActiveMQ to log messages.
The client aplication may provide an implementation of ITrace if it wishes to
route messages to a specific destination.
Assembly: Apache.NMS.dll
Syntax
Properties
IsDebugEnabled
Declaration
bool IsDebugEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsErrorEnabled
Declaration
bool IsErrorEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsFatalEnabled
Declaration
bool IsFatalEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsInfoEnabled
Declaration
bool IsInfoEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsWarnEnabled
Declaration
bool IsWarnEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
Debug(String)
Declaration
void Debug(string message)
Parameters
Type |
Name |
Description |
System.String |
message |
|
Error(String)
Declaration
void Error(string message)
Parameters
Type |
Name |
Description |
System.String |
message |
|
Fatal(String)
Declaration
void Fatal(string message)
Parameters
Type |
Name |
Description |
System.String |
message |
|
Info(String)
Declaration
void Info(string message)
Parameters
Type |
Name |
Description |
System.String |
message |
|
Warn(String)
Declaration
void Warn(string message)
Parameters
Type |
Name |
Description |
System.String |
message |
|