src/Pure/Admin/build_log.scala
changeset 64297 12a47f263122
parent 64296 544481988e65
child 64298 0f000101652a
--- a/src/Pure/Admin/build_log.scala	Tue Oct 18 11:24:14 2016 +0200
+++ b/src/Pure/Admin/build_log.scala	Tue Oct 18 11:50:38 2016 +0200
@@ -30,8 +30,8 @@
   def log_subdir(date: Date): Path =
     Path.explode("log") + Path.explode(date.rep.getYear.toString)
 
-  def log_filename(engine: String, date: Date, more: String*): Path =
-    Path.explode((engine :: log_date(date) :: more.toList).mkString("", "_", ".log"))
+  def log_filename(engine: String, date: Date, more: List[String] = Nil): Path =
+    Path.explode((engine :: log_date(date) :: more).mkString("", "_", ".log"))
 
 
   /* log file collections */
@@ -247,6 +247,7 @@
 
   object Field
   {
+    val build_tags = "build_tags"
     val build_group_id = "build_group_id"
     val build_id = "build_id"
     val build_engine = "build_engine"