aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/common/logging/PhiLogger.scala
blob: c8907a8f447ae196a6fd1cba7883ce8c68346c0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package xyz.driver.common.logging

trait PhiLogger {

  def error(message: PhiString): Unit

  def warn(message: PhiString): Unit

  def info(message: PhiString): Unit

  def debug(message: PhiString): Unit

  def trace(message: PhiString): Unit

}