Disable Ivy debug-level logging (see elaboration below). Fixes #635.

The verbose-level logging is what usually contains relevant information for the user.
Persisting the debug logging slows down update noticeably and clutters the more useful
debug logging output from verbose.
This commit is contained in:
Mark Harrah 2013-01-10 16:06:12 -05:00
parent aff95baf0e
commit 6a7540cf6f
1 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,9 @@ private final class IvyLoggerInterface(logger: Logger) extends MessageLogger
case MSG_ERR => error(msg)
}
}
def debug(msg: String) = logger.debug(msg)
//DEBUG level messages are very verbose and rarely useful to users.
// TODO: provide access to this information some other way
def debug(msg: String) {}
def verbose(msg: String) = logger.verbose(msg)
def deprecated(msg: String) = warn(msg)
def info(msg: String) = logger.info(msg)