object Logger extends Logger
High-level API for logging operations.
For example, logging with the default application logger:
Logger.info("Hello!")
Logging with a custom logger:
Logger("my.logger").info("Hello!")
- Source
- Logger.scala
- Alphabetic
- By Inheritance
- Logger
- Logger
- LoggerLike
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def applicationMode: Option[Mode]
The global application mode currently being used by the logging API.
- def apply(clazz: Class[_]): Logger
Obtains a logger instance.
Obtains a logger instance.
- clazz
a class whose name will be used as logger name
- returns
a logger
- def apply(name: String): Logger
Obtains a logger instance.
Obtains a logger instance.
- name
the name of the logger
- returns
a logger
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val logger: org.slf4j.Logger
The underlying SLF4J Logger.
The underlying SLF4J Logger.
- Definition Classes
- Logger → LoggerLike
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def setApplicationMode(mode: Mode): Unit
Set the global application mode used for logging.
Set the global application mode used for logging. Used when the Play application starts.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- lazy val underlyingLogger: org.slf4j.Logger
The underlying SLF4J Logger.
The underlying SLF4J Logger.
- Definition Classes
- LoggerLike
- def unsetApplicationMode(): Unit
Unset the global application mode.
Unset the global application mode. Used when the application shuts down.
If multiple applications are running
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- def debug(message: => String, error: => Throwable)(implicit mc: MarkerContext): Unit
Logs a message with the
DEBUG
level.Logs a message with the
DEBUG
level.- message
the message to log
- error
the associated exception
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def debug(message: => String)(implicit mc: MarkerContext): Unit
Logs a message with the
DEBUG
level.Logs a message with the
DEBUG
level.- message
the message to log
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def enabled: Boolean
- Definition Classes
- Logger → Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def error(message: => String, error: => Throwable)(implicit mc: MarkerContext): Unit
Logs a message with the
ERROR
level.Logs a message with the
ERROR
level.- message
the message to log
- error
the associated exception
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def error(message: => String)(implicit mc: MarkerContext): Unit
Logs a message with the
ERROR
level.Logs a message with the
ERROR
level.- message
the message to log
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def forMode(mode: Mode*): Logger
Get a logger that only works when the application is in the given mode(s).
Get a logger that only works when the application is in the given mode(s).
If the global application mode has not been set (by calling Logger.setApplicationMode), this has no effect.
- def info(message: => String, error: => Throwable)(implicit mc: MarkerContext): Unit
Logs a message with the
INFO
level.Logs a message with the
INFO
level.- message
the message to log
- error
the associated exception
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def info(message: => String)(implicit mc: MarkerContext): Unit
Logs a message with the
INFO
level.Logs a message with the
INFO
level.- message
the message to log
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def isDebugEnabled(implicit mc: MarkerContext): Boolean
true
if the logger instance is enabled for theDEBUG
level.true
if the logger instance is enabled for theDEBUG
level.- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def isErrorEnabled(implicit mc: MarkerContext): Boolean
true
if the logger instance is enabled for theERROR
level.true
if the logger instance is enabled for theERROR
level.- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def isInfoEnabled(implicit mc: MarkerContext): Boolean
true
if the logger instance is enabled for theINFO
level.true
if the logger instance is enabled for theINFO
level.- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def isTraceEnabled(implicit mc: MarkerContext): Boolean
true
if the logger instance is enabled for theTRACE
level.true
if the logger instance is enabled for theTRACE
level.- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def isWarnEnabled(implicit mc: MarkerContext): Boolean
true
if the logger instance is enabled for theWARN
level.true
if the logger instance is enabled for theWARN
level.- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def trace(message: => String, error: => Throwable)(implicit mc: MarkerContext): Unit
Logs a message with the
TRACE
level.Logs a message with the
TRACE
level.- message
the message to log
- error
the associated exception
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def trace(message: => String)(implicit mc: MarkerContext): Unit
Logs a message with the
TRACE
level.Logs a message with the
TRACE
level.- message
the message to log
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def warn(message: => String, error: => Throwable)(implicit mc: MarkerContext): Unit
Logs a message with the
WARN
level.Logs a message with the
WARN
level.- message
the message to log
- error
the associated exception
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.
- def warn(message: => String)(implicit mc: MarkerContext): Unit
Logs a message with the
WARN
level.Logs a message with the
WARN
level.- message
the message to log
- mc
the implicit marker context, if defined.
- Definition Classes
- Logger → LoggerLike
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Create an instance of via Logger(...) and use the same-named method. Or use SLF4J directly.