Example #1
0
 /**
  * Sets minimum trace execution time. Traces that laster for shorted period of time will be
  * discarded. Not that this is default setting that can be overridden with spy.begin() method.
  *
  * @param traceTime minimum trace execution time (50 milliseconds by default)
  */
 public void setTracerMinTraceTime(long traceTime) {
   TraceMarker.setMinTraceTime(traceTime * 1000000L);
 }
Example #2
0
 public long getTracerMinTraceTime() {
   return TraceMarker.getMinTraceTime() / 1000000L;
 }