Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions applications/luci-app-radicale3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
PROVIDES:=luci-app-radicale2

EXTRA_DEPENDS:=radicale3 (>= 3.7.1-1)

include ../../luci.mk

# call BuildPackage - OpenWrt buildroot signature
Original file line number Diff line number Diff line change
Expand Up @@ -453,22 +453,20 @@ return view.extend({
o = s.taboption('main', form.ListValue, 'level', _('Log Level'));
s.rmempty = true;
o.value('', _('Default (info)'));
o.value('trace', _('Trace'));
o.value('debug', _('Debug'));
o.value('info', _('Info'));
o.value('notice', _('Notice'));
o.value('warning', _('Warning'));
o.value('error', _('Error'));
o.value('critical', _('Critical'));
o.value('alert', _('Alert'));
o.default = '';

// TODO: Add more logging options

s.tab('advanced', _('Advanced'));

o = s.taboption('advanced', form.Flag, 'trace_on_debug', _('Trace on debug'), _('Do not filter debug messages starting with \'TRACE\''));
o.rmempty = true;
o.default = o.disabled;
o.depends('level', 'debug');

o = s.taboption('advanced', form.Flag, 'mask_passwords', _('Mask Passwords'), _('Redact passwords in logs'));
o.rmempty = true;
o.default = o.enabled;
Expand Down
Loading