Appender Additivityの例
| カテゴリー名 | 追加 Appenders |
Additivity フラグ |
出力先 | コメント |
|---|---|---|---|---|
| root | A1 | not applicable | A1 | root カテゴリーは親は無い |
| x | A-x1, A-x2 | true | A1, A-x1, A-x2 | rootのAppenders に"x" を追加する |
| x.y | none | true | A1, A-x1, A-x2 | "x"のAppenders と root |
| x.y.z | A-xyz1 | true | A1, A-x1, A-x2, A-xyz1 | Appenders in "x.y.z", "x" and root. |
| security | A-sec | false | A-sec | additivityフラグがfalseのためappenderの加算はされない。 |
| security.ACL | none | true | A-sec | "security"のadditivityフラグがfalseなので"security"の
appenderだけ
|