Sure. You can try from github: https://github.com/apache/logging-log4j2/archive/trunk.zip
Or you can clone via git instead: http://git.apache.org/logging-log4j2.git On 19 January 2014 18:27, Carfield Yim (JIRA) <j...@apache.org> wrote: > > [ > https://issues.apache.org/jira/browse/LOG4J2-501?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13876058#comment-13876058] > > Carfield Yim commented on LOG4J2-501: > ------------------------------------- > > Hi, it is too bad that my company firewall don't allow me to contact > external subversion, is that possible for me to download zip package > anywhere? > > > Issue on config log4j2 with JSON > > -------------------------------- > > > > Key: LOG4J2-501 > > URL: https://issues.apache.org/jira/browse/LOG4J2-501 > > Project: Log4j 2 > > Issue Type: Bug > > Components: Configurators > > Affects Versions: 2.0-beta9 > > Environment: Windows 7 > > Reporter: Carfield Yim > > Priority: Minor > > > > I have below simple config for log4j2 which just log the message to > console stdout and a file: > > {code:xml} > > <?xml version="1.0" encoding="UTF-8"?> > > <Configuration> > > <Appenders> > > <RandomAccessFile name="FILE" fileName="app.log"> > > <PatternLayout> > > <Pattern>%d %p %c{1.} [%t] %m%n</Pattern> > > </PatternLayout> > > </RandomAccessFile> > > <Console name="STDOUT" target="SYSTEM_OUT"> > > <PatternLayout pattern="%m%n" /> > > </Console> > > </Appenders> > > <Loggers> > > <Root level="trace"> > > <AppenderRef ref="FILE" /> > > <AppenderRef ref="STDOUT" /> > > </Root> > > </Loggers> > > </Configuration> > > {code} > > It working fine, but if I change to JSON config, it doesn't work, > Someone suggest it maybe a bug > > {code} > > { "configuration": > > { > > "appenders": { > > "RandomAccessFile": { "name": "FILE", "fileName": "app.log", > > "PatternLayout": { "pattern": "%d %p %c{1.} [%t] %m%n" } > > }, > > "Console": { "name": "STDOUT", > > "PatternLayout": { "pattern": "%m%n" } > > } > > }, > > "loggers": { > > "root": { "level": "trace", > > "AppenderRef": { "ref": "STDOUT" }, > > "AppenderRef": { "ref": "FILE" } > > } > > } > > } > > } > > {code} > > > > -- > This message was sent by Atlassian JIRA > (v6.1.5#6160) > > --------------------------------------------------------------------- > To unsubscribe, e-mail: log4j-dev-unsubscr...@logging.apache.org > For additional commands, e-mail: log4j-dev-h...@logging.apache.org > > -- Matt Sicker <boa...@gmail.com>