/* * Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com> */ package play.runsupport trait LoggerProxy { def verbose(message: => String): Unit def debug(message: => String): Unit def info(message: => String): Unit def warn(message: => String): Unit def error(message: => String): Unit def trace(t: => Throwable): Unit def success(message: => String): Unit }