com.twitter.logging

Logger

class Logger extends AnyRef

Scala wrapper for logging.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Logger
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(name: String, wrapped: java.util.logging.Logger)

    Attributes
    protected

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addHandler(handler: java.util.logging.Handler): Unit

  7. final def apply(level: Level, thrown: Throwable, message: String, items: Any*): Unit

  8. final def apply(level: Level, message: String, items: Any*): Unit

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clearHandlers(): Unit

    Remove all existing log handlers.

  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def critical(thrown: Throwable, msg: String, items: Any*): Unit

  13. def critical(msg: String, items: Any*): Unit

  14. def debug(thrown: Throwable, msg: String, items: Any*): Unit

  15. def debug(msg: String, items: Any*): Unit

  16. def debugLazy(msg: ⇒ AnyRef): Unit

  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def error(thrown: Throwable, msg: String, items: Any*): Unit

  20. def error(msg: String, items: Any*): Unit

  21. def fatal(thrown: Throwable, msg: String, items: Any*): Unit

  22. def fatal(msg: String, items: Any*): Unit

  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. def getFilter(): Filter

  26. def getHandlers(): Array[java.util.logging.Handler]

  27. def getLevel(): java.util.logging.Level

  28. def getParent(): java.util.logging.Logger

  29. def getUseParentHandlers(): Boolean

  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. def ifCritical(thrown: Throwable, message: ⇒ AnyRef): Unit

  32. def ifCritical(message: ⇒ AnyRef): Unit

  33. def ifDebug(thrown: Throwable, message: ⇒ AnyRef): Unit

  34. def ifDebug(message: ⇒ AnyRef): Unit

  35. def ifError(thrown: Throwable, message: ⇒ AnyRef): Unit

  36. def ifError(message: ⇒ AnyRef): Unit

  37. def ifFatal(thrown: Throwable, message: ⇒ AnyRef): Unit

  38. def ifFatal(message: ⇒ AnyRef): Unit

  39. def ifInfo(thrown: Throwable, message: ⇒ AnyRef): Unit

  40. def ifInfo(message: ⇒ AnyRef): Unit

  41. def ifTrace(thrown: Throwable, message: ⇒ AnyRef): Unit

  42. def ifTrace(message: ⇒ AnyRef): Unit

  43. def ifWarning(thrown: Throwable, message: ⇒ AnyRef): Unit

  44. def ifWarning(message: ⇒ AnyRef): Unit

  45. def info(thrown: Throwable, msg: String, items: Any*): Unit

  46. def info(msg: String, items: Any*): Unit

  47. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  48. def isLoggable(level: java.util.logging.Level): Boolean

  49. final def log(level: Level, thrown: Throwable, message: String, items: Any*): Unit

    Log a message, with sprintf formatting, at the desired level, and attach an exception and stack trace.

    Log a message, with sprintf formatting, at the desired level, and attach an exception and stack trace. The message is lazily formatted if formatting is required.

  50. final def log(level: Level, message: String, items: Any*): Unit

    Log a message, with sprintf formatting, at the desired level.

  51. def log(record: java.util.logging.LogRecord): Unit

  52. def logLazy(level: Level, thrown: Throwable, message: ⇒ AnyRef): Unit

    Log a message, with lazy (call-by-name) computation of the message, and attach an exception and stack trace.

  53. def logLazy(level: Level, message: ⇒ AnyRef): Unit

    Log a message, with lazy (call-by-name) computation of the message, at the desired level.

  54. val name: String

  55. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  56. final def notify(): Unit

    Definition Classes
    AnyRef
  57. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  58. def removeHandler(handler: java.util.logging.Handler): Unit

  59. def setFilter(filter: Filter): Unit

  60. def setLevel(level: java.util.logging.Level): Unit

  61. def setUseParentHandlers(use: Boolean): Unit

  62. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  63. def toString(): String

    Definition Classes
    Logger → AnyRef → Any
  64. def trace(thrown: Throwable, msg: String, items: Any*): Unit

  65. def trace(msg: String, items: Any*): Unit

  66. def traceLazy(msg: ⇒ AnyRef): Unit

  67. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  70. def warning(thrown: Throwable, msg: String, items: Any*): Unit

  71. def warning(msg: String, items: Any*): Unit

Inherited from AnyRef

Inherited from Any

Ungrouped