<?xml version="1.0" encoding="UTF-8" ?> <Configuration> <Appenders> <RollingFile name="RollingFile" fileName="log/hws.log" filePattern="log/$${date:yyyy-MM}/app-%d{MM-dd-yyyy}-%i.log.gz"> <PatternLayout> <Pattern>%d %p %c{1.} [%t] %m%n</Pattern> </PatternLayout> <Policies> <TimeBasedTriggeringPolicy /> <SizeBasedTriggeringPolicy size="250 MB" /> </Policies> </RollingFile> </Appenders> <Loggers> <Logger name="com.perforce" level="info" /> <Root level="error"> <AppenderRef ref="RollingFile" /> </Root> </Loggers> </Configuration>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 18035 | tjuricek |
Preliminary distribution formats with first-pass post-install configuration script for Linux only. This is *manually verified* at the moment. The testing framework is TBD. This contains *preliminary* hooks for .deb and .rpm packages. Those are *completely untested* and not configured. |
||
#1 | 17351 | tjuricek |
Allow system properties to adjust config, and use log4j as the logging system by default (from Simple). We may switch to log4j 2, I am still ironing out deployment. |