class Logger extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(name: String, resourceBundle: String)

Value Members

  1. def addHandler(handler: Handler): Unit
  2. def config(msg: String): Unit
  3. def entering(sourceClass: String, sourceMethod: String, params: Array[AnyRef]): Unit
  4. def entering(sourceClass: String, sourceMethod: String, param: AnyRef): Unit
  5. def entering(sourceClass: String, sourceMethod: String): Unit
  6. def exiting(sourceClass: String, sourceMethod: String, result: AnyRef): Unit
  7. def exiting(sourceClass: String, sourceMethod: String): Unit
  8. def fine(msg: String): Unit
  9. def finer(msg: String): Unit
  10. def finest(msg: String): Unit
  11. def getFilter(): Filter
  12. def getHandlers(): Array[Handler]
  13. def getLevel(): Level
  14. def getName(): String
  15. def getParent(): Logger
  16. def getResourceBundleName(): String
  17. def getUseParentHandlers(): Boolean
  18. def info(msg: String): Unit
  19. def isLoggable(level: Level): Boolean
  20. def log(level: Level, msg: String, thrown: Throwable): Unit
  21. def log(level: Level, msg: String, params: Array[AnyRef]): Unit
  22. def log(level: Level, msg: String, param: AnyRef): Unit
  23. def log(level: Level, msg: String): Unit
  24. def log(record: LogRecord): Unit
  25. def logp(level: Level, sourceClass: String, sourceMethod: String, msg: String, thrown: Throwable): Unit
  26. def logp(level: Level, sourceClass: String, sourceMethod: String, msg: String, params: Array[AnyRef]): Unit
  27. def logp(level: Level, sourceClass: String, sourceMethod: String, msg: String, param: AnyRef): Unit
  28. def logp(level: Level, sourceClass: String, sourceMethod: String, msg: String): Unit
  29. def removeHandler(handler: Handler): Unit
  30. def setFilter(filter: Filter): Unit
  31. def setLevel(newLevel: Level): Unit
  32. def setParent(parent: Logger): Unit
  33. def setUseParentHandlers(useParentHandlers: Boolean): Unit
  34. def severe(msg: String): Unit
  35. def throwing(sourceClass: String, sourceMethod: String, thrown: Throwable): Unit
  36. def warning(msg: String): Unit