Changeset 579 for trunk/grails-app
- Timestamp:
- Jun 7, 2010, 10:18:27 PM (14 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/Config.groovy
r559 r579 93 93 warn 'org.mortbay.log' // Jetty 94 94 95 error "grails.app" // Set the default log level for our app code. 96 info "grails.app.bootstrap" // Set the log level per type and per type.class 97 error "grails.app.service.AuthService" 98 error "grails.app.service.NavigationService" 99 error "grails.app.service.com.zeddware.grails.plugins.filterpane.FilterService" 95 error 'grails.app' // Set the default log level for our app code. 96 info 'grails.app.bootstrap' // Set the log level per type and per type.class 97 error 'grails.app.service.AuthService' 98 error 'grails.app.service.NavigationService' 99 error 'grails.app.service.com.zeddware.grails.plugins.filterpane.FilterService' 100 error 'grails.app.task' // Quartz jobs. 101 info 'grails.app.task.InventoryReindexJob' 100 102 101 103 // Move anything that should behave differently into this section. … … 108 110 } 109 111 //debug "org.hibernate.SQL" 110 debug "grails.app.service"111 debug "grails.app.controller"112 debug 'grails.app.service' 113 debug 'grails.app.controller' 112 114 break 113 115 case 'test': … … 117 119 additivity = true 118 120 } 119 debug "grails.app.service"120 debug "grails.app.controller"121 debug 'grails.app.service' 122 debug 'grails.app.controller' 121 123 break 122 124 case 'production': … … 126 128 additivity = true 127 129 } 128 warn "grails.app.service"129 warn "grails.app.controller"130 debug "grails.app.service.AssetCsvService"131 debug "grails.app.service.PersonCsvService"132 debug "grails.app.service.InventoryCsvService"133 debug "grails.app.service.AssetTreeService"/// @todo: remove after testing.130 warn 'grails.app.service' 131 warn 'grails.app.controller' 132 debug 'grails.app.service.AssetCsvService' 133 debug 'grails.app.service.PersonCsvService' 134 debug 'grails.app.service.InventoryCsvService' 135 debug 'grails.app.service.AssetTreeService' /// @todo: remove after testing. 134 136 break 135 137 }
Note: See TracChangeset
for help on using the changeset viewer.