Log4j in Java – logils: how to log in to a file?

I'm in Grails config This log4j configuration is available in groovy

log4j = {
    error  'org.codehaus.groovy.grails.web.servlet',//  controllers
                   'org.codehaus.groovy.grails.web.pages' //  GSP
    warn 'org.mortbay.log' 


    appenders {
        rollingFile  name:'infoLog',file:'info.log',threshold: org.apache.log4j.Level.INFO,maxFileSize:1024
        rollingFile  name:'warnLog',file:'warn.log',threshold: org.apache.log4j.Level.WARN,maxFileSize:1024
        rollingFile  name:'errorLog',file:'error.log',threshold: org.apache.log4j.Level.ERROR,maxFileSize:1024
        rollingFile  name:'custom',file:'custom.log',maxFileSize:1024
    }

    root {
        info 'infoLog','warnLog','errorLog','custom',stdout
        error()
        additivity = true
    }
}

Infolog, warnlog and errorlog come from the previous problem... They work well

Now I add a new rollingfile wit name "custom"

I try to use log Info ("something... ${obj}") log in from my controller and service; But it seems that the message is not inserted into custom Log, do I need to add something to the configuration?

thank you!!

Solution

Just got the answer from Grails' mailing list:

I just need to add

Debug "Grails. App"

Roar warning "org. Mortbay. Log"

Case closed!

The above is the log4j in Java logils collected by programming house for you: how to log in files? I hope this article can help you solve log4j in Java logils: how to log in files? Program development problems encountered.

If you think the content of the programming home website is good, you are welcome to recommend the programming home website to programmers and friends.

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>