explicitly enable stacktraces on any -v

This commit is contained in:
Jonathan Shook 2022-01-05 15:33:22 -06:00
parent 0ca86e33f4
commit e8b06829c1

View File

@ -302,10 +302,12 @@ public class NBCLIOptions {
break; break;
case DASH_VV_DEBUG: case DASH_VV_DEBUG:
consoleLevel = NBLogLevel.DEBUG; consoleLevel = NBLogLevel.DEBUG;
setWantsStackTraces(true);
arglist.removeFirst(); arglist.removeFirst();
break; break;
case DASH_VVV_TRACE: case DASH_VVV_TRACE:
consoleLevel = NBLogLevel.TRACE; consoleLevel = NBLogLevel.TRACE;
setWantsStackTraces(true);
arglist.removeFirst(); arglist.removeFirst();
break; break;
case ANNOTATE_EVENTS: case ANNOTATE_EVENTS: