Grails log4j configuration - ERROR Method missing when configuring log4j: logger

▼魔方 西西 提交于 2019-12-06 16:39:21

You're mixing up your syntaxes - logging configuration changed completely between Grails 1.0 and 1.1. Instead of

logger {
  grails="error"
} 

you just need

error 'grails'

along the same pattern as the debug 'org.hibernate' you have higher up.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!