1
だから私はこのようConfig.groovyでGrailsのログアペンダを使用しています:grails:環境レベルでログのしきい値を設定していますか?
console name: 'stdout',
threshold: org.apache.log4j.Level.FATAL
appender new org.apache.log4j.DailyRollingFileAppender(name: "full",
threshold: org.apache.log4j.Level.ERROR,
file: "/tmp/test.log");
私はこのような環境設定を持っている:私は時に開発環境でしきい値を変更するにはどうすればよい
environments {
root {
info 'full', 'stdout'
additivity=true
}
development {
}
}
?私がやりたいのは何
は「フル」と「標準出力」、異なる環境でアペンダを追加しないでしきい値を変更です。 – tedder42