Skip to content

Instantly share code, notes, and snippets.

@olegp
Created January 21, 2012 11:36
Show Gist options
  • Save olegp/1652459 to your computer and use it in GitHub Desktop.
Save olegp/1652459 to your computer and use it in GitHub Desktop.
Disable logging in Ringo
var logLevels = {
"org.hibernate": "WARN",
"com.mchange": "ERROR",
"net.sf.ehcache": "ERROR"
};
var {Logger, Level} = org.apache.log4j;
for(var p in logLevels) {
Logger.getLogger(p).setLevel(Level[logLevels[p]]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment