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: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. def addHandler(handler: java.util.logging.Handler): Unit

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

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

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clearHandlers(): Unit

    Remove all existing log handlers.

  9. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

  20. def finalize(): Unit

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

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

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

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

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

  26. def getUseParentHandlers(): Boolean

  27. def hashCode(): Int

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  44. final def isInstanceOf[T0]: Boolean

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

  46. 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.

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

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

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

  49. 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.

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

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

  51. val name: String

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

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

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

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

  56. def setFilter(filter: Filter): Unit

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

  58. def setUseParentHandlers(use: Boolean): Unit

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

    Definition Classes
    AnyRef
  60. def toString(): String

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

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

  63. final def wait(): Unit

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped