1

リファレンスマニュアルには3回しか記載されておらず、構成オプションを適切にリストすることはできません。たとえば、ログカテゴリを設定する方法はありますか?

4

1 に答える 1

2

使用可能な属性については、スキーマのドキュメントを参照してください。例えば...

    <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>

ほとんどのIDEコンテキストアシストは、要素の作成中にこのドキュメントを提示します。

ただし、「ドキュメント」の問題を自由に開いてくださいhttps://jira.springsource.org/browse/INT

于 2013-02-26T22:37:05.243 に答える