fix Logger/Process

This commit is contained in:
Mark Harrah 2010-08-22 19:07:46 -04:00
parent 5b21bae244
commit d12adcd7ae
1 changed files with 1 additions and 3 deletions

View File

@ -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. */