mirror of https://github.com/sbt/sbt.git
9 lines
168 B
Scala
9 lines
168 B
Scala
|
|
/* sbt -- Simple Build Tool
|
||
|
|
* Copyright 2008, 2009 Mark Harrah
|
||
|
|
*/
|
||
|
|
package xsbt
|
||
|
|
|
||
|
|
object Log
|
||
|
|
{
|
||
|
|
def debug(log: xsbti.Logger, msg: => String) = log.debug(Message(msg))
|
||
|
|
}
|