Thomas Vachuska
Committed by Gerrit Code Review

Changed the method for increasing log file size.

Change-Id: I8f4685112f937e0445eb8a43a1e1627c7e173f6b
...@@ -28,6 +28,10 @@ function build_stage_dir() { ...@@ -28,6 +28,10 @@ function build_stage_dir() {
28 [ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $ONOS_STAGE/$KARAF_DIST/demos 28 [ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $ONOS_STAGE/$KARAF_DIST/demos
29 mkdir bin 29 mkdir bin
30 30
31 + # Patch the log-file size in place to increase it to 10 MB
32 + perl -pi.old -e "s/maxFileSize=1MB/maxFileSize=10MB/g" \
33 + $ONOS_STAGE/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
34 +
31 # Stage the ONOS admin scripts and patch in Karaf service wrapper extras 35 # Stage the ONOS admin scripts and patch in Karaf service wrapper extras
32 cp -r $ONOS_ROOT/tools/package/bin . 36 cp -r $ONOS_ROOT/tools/package/bin .
33 cp -r $ONOS_ROOT/tools/package/init $ONOS_STAGE/init 37 cp -r $ONOS_ROOT/tools/package/init $ONOS_STAGE/init
......
1 -################################################################################
2 -#
3 -# Licensed to the Apache Software Foundation (ASF) under one or more
4 -# contributor license agreements. See the NOTICE file distributed with
5 -# this work for additional information regarding copyright ownership.
6 -# The ASF licenses this file to You under the Apache License, Version 2.0
7 -# (the "License"); you may not use this file except in compliance with
8 -# the License. You may obtain a copy of the License at
9 -#
10 -# http://www.apache.org/licenses/LICENSE-2.0
11 -#
12 -# Unless required by applicable law or agreed to in writing, software
13 -# distributed under the License is distributed on an "AS IS" BASIS,
14 -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 -# See the License for the specific language governing permissions and
16 -# limitations under the License.
17 -#
18 -################################################################################
19 -
20 -# Root logger
21 -log4j.rootLogger=INFO, out, osgi:*
22 -log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer
23 -
24 -# CONSOLE appender not used by default
25 -log4j.appender.stdout=org.apache.log4j.ConsoleAppender
26 -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
27 -log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
28 -
29 -# File appender
30 -log4j.appender.out=org.apache.log4j.RollingFileAppender
31 -log4j.appender.out.layout=org.apache.log4j.PatternLayout
32 -log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
33 -log4j.appender.out.file=${karaf.data}/log/karaf.log
34 -log4j.appender.out.append=true
35 -log4j.appender.out.maxFileSize=10MB
36 -log4j.appender.out.maxBackupIndex=10
37 -
38 -# Sift appender
39 -log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
40 -log4j.appender.sift.key=bundle.name
41 -log4j.appender.sift.default=karaf
42 -log4j.appender.sift.appender=org.apache.log4j.FileAppender
43 -log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout
44 -log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n
45 -log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log
46 -log4j.appender.sift.appender.append=true
47 -