John B
John B

Reputation: 32949

Where can I find the documentation for the logging-channel-adapter?

The reference manual only mentions it three times and does not do a good job of listing the configuration options. For example, is there a way to set the logging category?

Upvotes: 1

Views: 874

Answers (1)

Gary Russell
Gary Russell

Reputation: 174554

See the schema documentation for available attributes; for example...

    <xsd:attribute name="logger-name" type="xsd:string">
        <xsd:annotation>
            <xsd:documentation>
                Provide a name for the logger. This is useful when there are multiple logging Channel Adapters configured,
                and you would like to differentiate them within the actual log. By default the logger name will be the
                fully qualified class name of the LoggingHandler implementation.
            </xsd:documentation>
        </xsd:annotation>
    </xsd:attribute>

Most IDE context-assist presents this documentation while creating the element.

However, feel free to open a 'Documentation' issue https://jira.springsource.org/browse/INT

Upvotes: 2

Related Questions