o

sbt.internal.util

StackTrace

object StackTrace

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StackTrace
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def isSbtClass(name: String): Boolean
  2. def trimmed(t: Throwable, d: Int): String

    Return a printable representation of the stack trace associated with t.

    Return a printable representation of the stack trace associated with t. Information about t and its Throwable causes is included. The number of lines to be included for each Throwable is configured via d which should be greater than or equal to 0.

    - If d is 0, then all elements are included up to (but not including) the first element that comes from sbt. - If d is greater than 0, then up to that many lines are included, where the line for the Throwable is counted plus one line for each stack element. Less lines will be included if there are not enough stack elements.