luci-app-ttyd: add debug value list
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
b2e00f23a7
commit
3781b20bd2
1 changed files with 6 additions and 2 deletions
|
@ -70,8 +70,12 @@ return view.extend({
|
|||
o = s.option(form.Value, 'ssl_ca', _('SSL ca'), _('SSL CA file path for client certificate verification'));
|
||||
o.depends('ssl', '1');
|
||||
|
||||
o = s.option(form.Value, 'debug', _('Debug'), _('Set log level (default: 7)'));
|
||||
o.placeholder = '7';
|
||||
o = s.option(form.ListValue, 'debug', _('Debug'), _('Set log level (default: 7)'));
|
||||
o.value('1', _('Error'));
|
||||
o.value('3', _('Warning'));
|
||||
o.value('7', _('Notice'));
|
||||
o.value('15', _('Info'));
|
||||
o.default = '7';
|
||||
|
||||
s.option(form.Value, 'command', _('Command'));
|
||||
|
||||
|
|
Loading…
Reference in a new issue