Show / Hide Table of Contents

    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.

    Namespace: Apache.NMS
    Assembly: Apache.NMS.dll
    Syntax
    public interface ITrace
    Remarks

    Use the Tracer class to register an instance of ITrace as the active trace destination.

    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
    Back to top Copyright © 2005-2019 Apache Software Foundation project
    Generated by DocFX