summaryrefslogtreecommitdiffstats
path: root/src/main/scala/cake/logger.scala
blob: db6de9a22482dc3381cd55d2f7e58a31cddc2f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package cake.logger

trait Logger {
  def log (msg: String): Unit
}

class FileLogger (logFileName: String) extends Logger {
  def log (msg: String): Unit =
    println("writing " + msg + " to " + logFileName)
}