CORDA-2725: Include DEBUG in DJVM CLI help's list of logging levels. (#4868)

This commit is contained in:
Chris Rankin 2019-03-10 14:39:22 +00:00 committed by Tommy Lillehagen
parent ec5cbc2971
commit b6fe3b2a81

View File

@ -21,7 +21,7 @@ abstract class CommandBase : Callable<Boolean> {
@Option(
names = ["-l", "--level"],
description = ["The minimum severity level to log (TRACE, INFO, WARNING or ERROR."],
description = ["The minimum severity level to log (TRACE, DEBUG, INFO, WARNING or ERROR."],
converter = [SeverityConverter::class]
)
protected var level: Severity = Severity.WARNING
@ -276,4 +276,4 @@ abstract class CommandBase : Callable<Boolean> {
}
}
}
}