mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-23 09:53:09 +00:00

- Added schema file - Add InitializeDatabase command line class - Can now pass in "dspace.configuration" system property which will get ConfigurationManager to load a specific configuration - Added a simple log4j properties file for use during builds (e.g. when executing InitializeDatabase) - Changed a couple of INFO level logs to DEBUG in DatabaseManager git-svn-id: http://scm.dspace.org/svn/repo/trunk@7 9c30dcfa-912a-0410-8fc2-9e0234be79fd
14 lines
503 B
Properties
14 lines
503 B
Properties
##########################################################
|
|
# Simple log4j configuration file used during build tasks
|
|
##########################################################
|
|
|
|
# Set root category priority to INFO and its only appender to A1.
|
|
log4j.rootCategory=INFO, A1
|
|
|
|
# A1 is set to be a ConsoleAppender.
|
|
log4j.appender.A1=org.apache.log4j.ConsoleAppender
|
|
|
|
# A1 uses PatternLayout.
|
|
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
|
|
log4j.appender.A1.layout.ConversionPattern=%d %-5p %c @ %m%n
|