mirror of https://github.com/sbt/sbt.git
fix Logger/Process
This commit is contained in:
parent
5b21bae244
commit
d12adcd7ae
|
|
@ -33,13 +33,11 @@ abstract class AbstractLogger extends Logger
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
These need to go in a module that integrates Logger and Process.
|
||||
object Logger
|
||||
{
|
||||
implicit def absLog2PLog(log: AbstractLogger): ProcessLogger = new BufferedLogger(log) with ProcessLogger
|
||||
implicit def log2PLog(log: Logger): ProcessLogger = absLog2PLog(new FullLogger(log))
|
||||
}*/
|
||||
}
|
||||
|
||||
/** This is intended to be the simplest logging interface for use by code that wants to log.
|
||||
* It does not include configuring the logger. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue