Как заставить интерпретатор показывать полную трассировку стека?

Есть ли способ заставить интерпретатор Scala (запущенный через SBT) печатать полную трассировку стека. По умолчанию отображается менее 10 строк:

scala> new CacheMonitoringClient
javax.management.InstanceNotFoundException: com.bea:Name=DomainRuntimeService,Type=weblogic.management.beanservers.domainrun
time.DomainRuntimeServiceMBean
        at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:195)
        at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:224)
        at javax.management.remote.rmi.RMIConnectionImpl_921_WLStub.getAttribute(Unknown Source)
        at weblogic.management.remote.common.RMIConnectionWrapper$11.run(ClientProviderBase.java:498)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
        at weblogic.security.Security.runAs(Security.java:61)
        at weblogic.management.remote.common.RMIConnectionWrapper.getAttribute(ClientProviderBas...

В качестве обходного пути я использую попробуйте {new CacheMonitoringClient} catch {case ex => ex.printStackTrace} (явно заключив вызовы, которые вызывают исключения Мне интересно), но это действительно уродливо ...

11
задан Vasil Remeniuk 22 September 2010 в 09:48
поделиться