Change logging level and ceate dist/log directory for logging.

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@778 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
Richard Alam 2008-12-12 17:09:02 +00:00
parent 9d670d9486
commit 50e81f10e8
2 changed files with 2 additions and 1 deletions

View File

@ -626,6 +626,7 @@
</target>
<target name="dist" description="Make Binary distribution" depends="clean, jar">
<mkdir dir="${dist.dir}/${log.dir}"/>
<copy todir="${dist.dir}/lib">
<fileset dir="lib"/>
</copy>

View File

@ -4,7 +4,7 @@
<!-- Appenders http://logback.qos.ch/manual/appenders.html -->
<appender name="CONSOLE"
class="ch.qos.logback.core.ConsoleAppender">
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>