You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jo...@apache.org on 2012/02/17 05:14:47 UTC

svn commit: r1245316 - /incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala

Author: joestein
Date: Fri Feb 17 04:14:47 2012
New Revision: 1245316

URL: http://svn.apache.org/viewvc?rev=1245316&view=rev
Log:
test access, fixed space

Modified:
    incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala

Modified: incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala?rev=1245316&r1=1245315&r2=1245316&view=diff
==============================================================================
--- incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala (original)
+++ incubator/kafka/trunk/core/src/main/scala/kafka/utils/Logging.scala Fri Feb 17 04:14:47 2012
@@ -72,7 +72,7 @@ trait Logging {
     logger.warn(msg,e)
   }	
 
-  def error(msg: => String):Unit = {
+  def error(msg: => String): Unit = {
     logger.error(msg)
   }		
   def error(e: => Throwable): Any = {
@@ -91,4 +91,4 @@ trait Logging {
   def fatal(msg: => String, e: => Throwable) = {
     logger.fatal(msg,e)
   }
-}
\ No newline at end of file
+}