From d12adcd7aede251c5025426bc47bff0d100fdb9d Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sun, 22 Aug 2010 19:07:46 -0400 Subject: [PATCH] fix Logger/Process --- util/log/Logger.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/util/log/Logger.scala b/util/log/Logger.scala index 0751b72c8..4a0f9c365 100644 --- a/util/log/Logger.scala +++ b/util/log/Logger.scala @@ -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. */