server/java/src/main/resources/log4j.xml
author durandn
Thu, 21 Apr 2016 15:18:19 +0200
changeset 605 13d355fd09bf
parent 316 242510015401
permissions -rw-r--r--
updated uri to allow optional trailing slash on single resource URIs (django automatic redirects don't carry over the Authorization header that can sometimes be needed, for instance with OAuth)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     1
<?xml version="1.0" encoding="UTF-8" standalone='no' ?>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
     2
<!DOCTYPE log4j:configuration>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  <appender name="console" class="org.apache.log4j.ConsoleAppender"> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    <param name="Target" value="System.out"/> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
    <layout class="org.apache.log4j.PatternLayout"> 
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     8
      <param name="ConversionPattern" value="%d{ABSOLUTE} %5p %t %c{2}:%L - %m%n"/> 
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    </layout> 
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    10
  </appender>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
  <logger name="org.iri_research.renkan">
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 109
diff changeset
    12
    <level value="DEBUG" />
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
  </logger>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    14
  <logger name="org.eclipse.jetty.util.log">
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    15
    <level value="INFO" />
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    16
  </logger>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    17
  <logger name="org.springframework.beans.factory">
107
fc839a1f6ffd Prepare version
ymh <ymh.work@gmail.com>
parents: 106
diff changeset
    18
      <level value="INFO" />
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    19
  </logger>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    20
  <!--logger name="org.cometd">
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    21
      <level value="DEBUG" />
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    22
  </logger-->
107
fc839a1f6ffd Prepare version
ymh <ymh.work@gmail.com>
parents: 106
diff changeset
    23
  <!--logger name="org.coweb">
106
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
    24
      <level value="DEBUG" />
107
fc839a1f6ffd Prepare version
ymh <ymh.work@gmail.com>
parents: 106
diff changeset
    25
  </logger-->
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
  <root> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
    <priority value ="WARN" /> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
    <appender-ref ref="console" /> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
  </root>
109
b6b20e8c4a1a configuration changes
ymh <ymh.work@gmail.com>
parents: 107
diff changeset
    30
   
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    31
</log4j:configuration>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    32