forked from avelinsk/nexus-google-analytics-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Angelina Velinska
committed
Apr 17, 2013
1 parent
1ed8654
commit b4c6d0e
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Sonatype Nexus (TM) Open Source Version | ||
Copyright (c) 2007-2012 Sonatype, Inc. | ||
All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. | ||
This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, | ||
which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. | ||
Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks | ||
of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the | ||
Eclipse Foundation. All other trademarks are the property of their respective owners. | ||
--> | ||
<configuration> | ||
<!-- always a good activate OnConsoleStatusListener --> | ||
<statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener"/> | ||
|
||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>logs/nexus-ga.log</file> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>logs/nexus-ga.%d{yyyy-MM-dd}.log.zip</fileNamePattern> | ||
</rollingPolicy> | ||
|
||
<encoder> | ||
<pattern>combined</pattern> | ||
<!--<pattern>%date %h %u "%i{Referer}" "%i{User-Agent}"</pattern>--> | ||
</encoder> | ||
</appender> | ||
|
||
<appender-ref ref="FILE"/> | ||
</configuration> |