summaryrefslogtreecommitdiffstats
path: root/Scala/example/project/RecordingLogger.scala
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-03-27 23:25:43 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-11-10 18:03:20 +0100
commitdcdc4d3e6ed08f37f7acd75c79ddea607d2e8e2a (patch)
treef5ab0b7e1ab3e2186dd864230419c5dc20404c1f /Scala/example/project/RecordingLogger.scala
parentab61b59311fc1428a8edbe99b103ab77627c7dc8 (diff)
downloadcoursera-dcdc4d3e6ed08f37f7acd75c79ddea607d2e8e2a.zip
coursera-dcdc4d3e6ed08f37f7acd75c79ddea607d2e8e2a.tar.gz
Scala : add scala/example
Diffstat (limited to 'Scala/example/project/RecordingLogger.scala')
-rw-r--r--Scala/example/project/RecordingLogger.scala35
1 files changed, 35 insertions, 0 deletions
diff --git a/Scala/example/project/RecordingLogger.scala b/Scala/example/project/RecordingLogger.scala
new file mode 100644
index 0000000..b886768
--- /dev/null
+++ b/Scala/example/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) = ()
+}