aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/logging/PhiLogger.scala
blob: 741ef18cf2465ae6e95472d38f7d949a9417503c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package xyz.driver.pdsuicommon.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

}