mirror of https://github.com/sbt/sbt.git
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:
parent
aff95baf0e
commit
6a7540cf6f
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue