New LogMessageExtractorCheck which writes out TXT report of all loggers
[yangtools.git] / common / checkstyle-logging / src / main / resources / checkstyle-logging.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE module PUBLIC
3     "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
4     "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
5
6 <module name="Checker">
7
8     <module name="TreeWalker">
9         <module name="org.opendaylight.yangtools.checkstyle.LoggerVariableNameCheck" />
10     </module>
11
12     <module name="TreeWalker">
13       <module name="org.opendaylight.yangtools.checkstyle.LoggerVariableModifiersCheck" />
14     </module>
15
16      <module name="TreeWalker">
17       <module name="org.opendaylight.yangtools.checkstyle.LoggerMustBeSlf4jCheck" />
18     </module>
19
20     <module name="TreeWalker">
21       <module name="org.opendaylight.yangtools.checkstyle.LoggerFactoryClassParameterCheck" />
22     </module>
23
24    <module name="TreeWalker">
25       <module name="org.opendaylight.yangtools.checkstyle.LogMessageConcatenationCheck" />
26     </module>
27
28     <module name="TreeWalker">
29       <module name="org.opendaylight.yangtools.checkstyle.LogMessagePlaceholderCountCheck" />
30     </module>
31
32     <module name="TreeWalker">
33         <module name="org.opendaylight.yangtools.checkstyle.LoggerDeclarationsCountCheck"/>
34     </module>
35
36     <module name="TreeWalker">
37         <module name="org.opendaylight.yangtools.checkstyle.LogMessageExtractorCheck"/>
38     </module>
39
40 </module>