summaryrefslogtreecommitdiffstats
path: root/Scala/patmat/project/RecordingLogger.scala
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-04-28 00:33:06 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2016-11-10 18:03:23 +0100
commit3e2f88773c61e2d0020b57161d0e901bec596c96 (patch)
treefe5c381e4a731600a60b4ac9862af672b5b7aa12 /Scala/patmat/project/RecordingLogger.scala
parent12ef23e6da7b7186bec20d426c087d757260659d (diff)
downloadcoursera-3e2f88773c61e2d0020b57161d0e901bec596c96.zip
coursera-3e2f88773c61e2d0020b57161d0e901bec596c96.tar.gz
Scala : add patmat
Diffstat (limited to 'Scala/patmat/project/RecordingLogger.scala')
-rw-r--r--Scala/patmat/project/RecordingLogger.scala35
1 files changed, 35 insertions, 0 deletions
diff --git a/Scala/patmat/project/RecordingLogger.scala b/Scala/patmat/project/RecordingLogger.scala
new file mode 100644
index 0000000..b886768
--- /dev/null
+++ b/Scala/patmat/project/RecordingLogger.scala
@@ -0,0 +1,35 @@
+import sbt._
+import collection.mutable.ListBuffer
+
+/**
+ * Logger to capture compiler output, test output
+ */
+
+object RecordingLogger extends Logger {
+ private val buffer = ListBuffer[String]()
+
+ def hasErrors = buffer.nonEmpty
+
+ def readAndClear() = {
+ val res = buffer.mkString("\n")
+ buffer.clear()
+ res
+ }
+
+ def clear() {
+ buffer.clear()
+ }
+
+ def log(level: Level.Value, message: => String) =
+ if (level == Level.Error) {
+ buffer += message
+ }
+
+ // we don't log success here
+ def success(message: => String) = ()
+
+ // invoked when a task throws an exception. invoked late, when the exception is logged, i.e.
+ // just before returning to the prompt. therefore we do nothing: storing the exception in the
+ // buffer would happen *after* the `handleFailure` reads the buffer.
+ def trace(t: => Throwable) = ()
+}