recordException static method
Implementation
static void recordException(ExceptionRecord r) {
if (_paused) return;
_exceptions.addLast(r);
while (_exceptions.length > _cap) {
_exceptions.removeFirst();
}
_exceptionStream.add(r);
}
static void recordException(ExceptionRecord r) {
if (_paused) return;
_exceptions.addLast(r);
while (_exceptions.length > _cap) {
_exceptions.removeFirst();
}
_exceptionStream.add(r);
}