Packages

trait Logging extends EnvironmentVariables

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logging
  2. EnvironmentVariables
  3. EnvironmentVariablesHelpers
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. val akkaLogLevel: Level
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val cassandraLogLevel: Level
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def formatValue[T](typeName: String, typeValue: String): Either[Throwable, T]

    Formats the value from a string to the thing specified

    Formats the value from a string to the thing specified

    typeName

    What kind of format ex. (String, Boolean, Int)

    typeValue

    The actual value to try and convert to T

    returns

    Either[Throwable, T]

    Definition Classes
    EnvironmentVariablesHelpers
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def getEnvVar[T](keyToLookFor: String, delimiter: Char, defaultValues: List[T])(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): List[T]

    Looks for the values of the environment variable specified split by a delimiter

    Looks for the values of the environment variable specified split by a delimiter

    keyToLookFor

    The environment variables key to look for

    delimiter

    What to split up the values by

    defaultValues

    If the environment variable key is not found return this value instead

    typeTag

    The return type (no need to actually specify this implicit it will default to the supplied T)

    returns

    List[T]

    Definition Classes
    EnvironmentVariables
  14. def getEnvVar[T](keyToLookFor: String, delimiter: Char, customError: Option[Throwable])(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): List[T]

    Looks for the values of the environment variable specified split by a delimiter

    Looks for the values of the environment variable specified split by a delimiter

    keyToLookFor

    The environment variables key to look for

    delimiter

    What to split up the values by

    customError

    Throw this error instead of the regular error if it fails

    typeTag

    The return type (no need to actually specify this implicit it will default to the supplied T)

    returns

    List[T]

    Definition Classes
    EnvironmentVariables
  15. def getEnvVar[T](keyToLookFor: String, delimiter: Char)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Either[Throwable, List[T]]

    Looks for the values of the environment variable specified split by a delimiter

    Looks for the values of the environment variable specified split by a delimiter

    keyToLookFor

    The environment variables key to look for

    delimiter

    What to split up the values by

    typeTag

    The return type (no need to actually specify this implicit it will default to the supplied T)

    returns

    Either[Throwable, List[T]

    Definition Classes
    EnvironmentVariables
  16. def getEnvVar[T](keyToLookFor: String, defaultValue: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Looks for the value of the environment variable specified

    Looks for the value of the environment variable specified

    keyToLookFor

    The environment variables key to look for

    defaultValue

    If the environment variable key is not found return this value instead

    typeTag

    The return type (no need to actually specify this implicit it will default to the supplied T)

    returns

    T

    Definition Classes
    EnvironmentVariables
  17. def getEnvVar[T](keyToLookFor: String, customError: Option[Throwable] = None)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Looks for the value of the environment variable specified and throws the error or a custom one if not found

    Looks for the value of the environment variable specified and throws the error or a custom one if not found

    keyToLookFor

    The environment variables key to look for

    customError

    The custom throwable to throw if the keyToLookFor is not found

    returns

    T

    Definition Classes
    EnvironmentVariables
  18. def getEnvVar[T](keyToLookFor: String)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Either[Throwable, T]

    Looks for the value of the environment variable specified

    Looks for the value of the environment variable specified

    keyToLookFor

    The environment variables key to look for

    typeTag

    The return type (no need to actually specify this implicit it will default to the supplied T)

    returns

    Either[Throwable, T]

    Definition Classes
    EnvironmentVariables
  19. def getLogLevel(key: String, default: String): Level
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val kafkaLogLevel: Level
  23. val log: Logger
  24. val logRaw: Logger
  25. val loggerContext: LoggerContext
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. def returnMatch[T](theTry: Try[Any]): Either[Throwable, T]

    Returns either a thing as instance of T or a throwable

    Returns either a thing as instance of T or a throwable

    theTry

    The Try to unwrap

    returns

    Either[Throwable, T]

    Definition Classes
    EnvironmentVariablesHelpers
  30. val rootLogLevel: Level
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. val udp: Logger
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  37. val zooKeeperLogLevel: Level

Inherited from EnvironmentVariables

Inherited from AnyRef

Inherited from Any

Ungrouped