mirror of https://github.com/sbt/sbt.git
11 lines
206 B
Scala
11 lines
206 B
Scala
|
|
package xsbt
|
||
|
|
|
||
|
|
trait CompileLogger extends xsbti.Logger with NotNull
|
||
|
|
{
|
||
|
|
def info(msg: => String)
|
||
|
|
def debug(msg: => String)
|
||
|
|
def warn(msg: => String)
|
||
|
|
def error(msg: => String)
|
||
|
|
def trace(t: => Throwable)
|
||
|
|
}
|