case class LogCallLocation(sourceLocation: SourceLocation, className: Option[String] = None, methodName: Option[String] = None) extends Product with Serializable
Represents all automatically collected information regarding the location of a log method call. This class exists so that the log method calls contain only one implicit parameter and that it's unique enough that a call to the implicit LogCallLocation.capture() method will be generated to fulfill the argument.
When the entry is created, the information contained in this class is broken up into several entry fields (sourceLocation, loggingClass and loggingMethod).
- sourceLocation
the source file and line number of the logging method call
- className
the (optional) class name from which the call was made (reflects the outermost class in the case of local class definitions)
- methodName
the (optional) method name from which the call was made (reflects the method name on the class specified by className if such a method exists)
- Alphabetic
- By Inheritance
- LogCallLocation
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new LogCallLocation(sourceLocation: SourceLocation, className: Option[String] = None, methodName: Option[String] = None)
- sourceLocation
the source file and line number of the logging method call
- className
the (optional) class name from which the call was made (reflects the outermost class in the case of local class definitions)
- methodName
the (optional) method name from which the call was made (reflects the method name on the class specified by className if such a method exists)
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val className: Option[String]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val methodName: Option[String]
- 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 productElementNames: Iterator[String]
- Definition Classes
- Product
- val sourceLocation: SourceLocation
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- LogCallLocation → AnyRef → Any
- 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()