annotate src/main/resources/log4j.properties.template @ 163:1611da70e43e

move delete button in entity details to better place.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Thu, 17 May 2018 14:42:57 +0200
parents e43d5179d47f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
1 ### direct log messages to stdout ###
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
2 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
3 log4j.appender.stdout.Target=System.out
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
4 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
100
e43d5179d47f better logging config (with thread).
casties
parents: 80
diff changeset
5 log4j.appender.stdout.layout.ConversionPattern=%d{dd MMM HH:mm:ss,SSS} %5p %t %c{1}:%L - %m%n
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
6 #%d{dd MMM yyyy HH:mm:ss,SSS}
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
7 #%d{ABSOLUTE}
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
8 ### direct messages to file hibernate.log ###
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
9 log4j.appender.file=org.apache.log4j.FileAppender
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
10 log4j.appender.file.File=${catalina.home}/logs/hibernate.log
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
11 log4j.appender.file.layout=org.apache.log4j.PatternLayout
100
e43d5179d47f better logging config (with thread).
casties
parents: 80
diff changeset
12 log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{1}:%L - %m%n
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
13
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
14 log4j.appender.persistenceServiceFile=org.apache.log4j.FileAppender
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
15 log4j.appender.persistenceServiceFile.File=${catalina.home}/logs/persistenceService.log
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
16 log4j.appender.persistenceServiceFile.layout=org.apache.log4j.PatternLayout
100
e43d5179d47f better logging config (with thread).
casties
parents: 80
diff changeset
17 log4j.appender.persistenceServiceFile.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{1}:%L - %m%n
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
18
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
19 log4j.appender.ismiFile=org.apache.log4j.FileAppender
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
20 log4j.appender.ismiFile.File=${catalina.home}/logs/ismi.log
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
21 log4j.appender.ismiFile.layout=org.apache.log4j.PatternLayout
100
e43d5179d47f better logging config (with thread).
casties
parents: 80
diff changeset
22 log4j.appender.ismiFile.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{1}:%L - %m%n
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
23
80
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
24 log4j.appender.transactionFile=org.apache.log4j.FileAppender
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
25 log4j.appender.transactionFile.File=${catalina.home}/logs/ismi-transactions.log
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
26 log4j.appender.transactionFile.layout=org.apache.log4j.PatternLayout
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
27 log4j.appender.transactionFile.layout.ConversionPattern=%d{ISO8601} %t %5p %m%n
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
28
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
29 ### set log levels - for more verbose logging change 'info' to 'debug' ##
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
30 log4j.rootLogger=warn, stdout, ismiFile
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
31
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
32
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
33 ### set log levels - for more verbose logging change 'info' to 'debug' ##
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
34
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
35 log4j.rootLogger=warn, stdout, ismiFile
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
36
80
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
37 # transaction log
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
38 log4j.logger.openmind.transactionlog=debug, transactionFile
5a2146dea778 log4j properties for transaction logger. destroy method for Quartz scheduler bean.
casties
parents: 59
diff changeset
39
59
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
40 #Others
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
41 log4j.logger.org.hibernate.connection.C3P0ConnectionProvider=error
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
42
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
43 # Log JDBC bind parameter runtime arguments
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
44 #log4j.logger.org.hibernate.type=trace
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
45
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
46 #OM
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
47 log4j.logger.org.mpi.openmind.repository.services.PersistenceService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
48 log4j.logger.org.mpi.openmind.search.SearchService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
49 log4j.logger.org.mpi.openmind.cache.CacheService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
50 log4j.logger.org.mpi.openmind.cache.AbstractCacheService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
51 log4j.logger.org.mpi.openmind.configuration.ConfigurationService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
52 log4j.logger.org.mpi.openmind.cache.WrapperService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
53 log4j.logger.org.mpi.openmind.repository.services.ServiceRegistry=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
54 log4j.logger.org.mpi.openmind.repository.bo.Entity=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
55 #ISMI
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
56 log4j.logger.de.mpiwg.itgroup.ismi.search.beans.SimpleSearchBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
57 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.SessionBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
58 log4j.logger.de.mpiwg.itgroup.ismi.merge.GeneralMerge=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
59 log4j.logger.de.mpiwg.itgroup.ismi.servlets.JSONInterface=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
60 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.CurrentTextBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
61 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.CurrentPersonBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
62 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.ApplicationBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
63 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.CurrentWitnessBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
64 log4j.logger.de.mpiwg.itgroup.ismi.servlets.jsonmethods.JSONGetRels=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
65 log4j.logger.de.mpiwg.itgroup.ismi.json.utils.JSONUtils=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
66 #log4j.logger.org.mpiwg.itgroup.escidoc.ESciDocCache=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
67
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
68 log4j.logger.de.mpiwg.itgroup.ismi=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
69
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
70 log4j.logger.org.mpi.openmind.search.AbstractSearchService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
71 log4j.logger.org.mpi.openmind.repository.services.AbstractPersistenceService=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
72
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
73 log4j.logger.de.mpiwg.itgroup.ismi.entry.beans.CurrentWitnessBean=info
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
74 log4j.logger.de.mpiwg.itgroup.ismi.publicView.PublicCodexList=info;
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
75 #log4j.logger.
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
76 #log4j.logger.
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
77 #log4j.logger.
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
78
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
79 #log4j.logger.net.sf.hibernate=debug, stdout
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
80 #Hibernate
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
81 #log4j.logger.org.hibernate.cfg=debug, file
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
82 #log4j.logger.org.hibernate.cfg.annotations.Version=info, stdout
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
83 #log4j.logger.org.hibernate.cfg.Environment=info, stdout
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
84 #log4j.logger.org.hibernate.cfg.AnnotationBinder=info, stdout
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
85
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
86
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
87 ### enable the following line if you want to track down connection ###
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
88 ### leakages when using DriverManagerConnectionProvider ###
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
89 #log4j.logger.net.sf.hibernate.connection.DriverManagerConnectionProvider=trace
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
90
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
91 ### log JDBC bind parameters ###
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
92 log4j.logger.net.sf.hibernate.type=debug
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
93
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
94
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
95
403afc3d94eb delete config files of instance in repo. copy *.template and edit in instance.
casties
parents:
diff changeset
96