Is it possible to activate | deactivate logger through Config.groovy?
for ex:
log4j = {
appenders {
file name:'connections', file: '/tmp/connection.log'
file name:'view', file:'/tmp/view.log'
}
root {
off 'connections', 'view'
}
info connections: "grails.app.controllers.ViewController",
consultations: "grails.app.controllers.ConnectController"
}
How I can deactivate all 'connections' logger?