diff options
author | khramshinr <khramshinr@gmail.com> | 2024-05-23 17:39:56 +0600 |
---|---|---|
committer | khramshinr <khramshinr@gmail.com> | 2024-05-27 18:23:32 +0600 |
commit | 4d84f786f64d2b80046100ead5d0e8c1eef7418c (patch) | |
tree | 1b51a268300b87d5e85a5dd98996067237b83feb /interface-definitions/include/accel-ppp | |
parent | 22dae74ef6037ad6a97da7118df42e41acbb117b (diff) | |
download | vyos-1x-4d84f786f64d2b80046100ead5d0e8c1eef7418c.tar.gz vyos-1x-4d84f786f64d2b80046100ead5d0e8c1eef7418c.zip |
T4576: Accel-ppp logging level configuration
add ability to change logging level config for:
* VPN L2TP
* VPN PPTP
* VPN SSTP
* IPoE Server
* PPPoE Serve
Diffstat (limited to 'interface-definitions/include/accel-ppp')
-rw-r--r-- | interface-definitions/include/accel-ppp/log.xml.i | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/interface-definitions/include/accel-ppp/log.xml.i b/interface-definitions/include/accel-ppp/log.xml.i new file mode 100644 index 000000000..96ce93ff9 --- /dev/null +++ b/interface-definitions/include/accel-ppp/log.xml.i @@ -0,0 +1,42 @@ +<!-- include start from accel-ppp/log.xml.i --> +<node name="log"> + <properties> + <help>Server logging </help> + </properties> + <children> + <leafNode name="level"> + <properties> + <help>Specifies log level</help> + <valueHelp> + <format>0</format> + <description>Turn off logging</description> + </valueHelp> + <valueHelp> + <format>1</format> + <description>Log only error messages</description> + </valueHelp> + <valueHelp> + <format>2</format> + <description>Log error and warning messages</description> + </valueHelp> + <valueHelp> + <format>3</format> + <description>Log error, warning and minimum information messages</description> + </valueHelp> + <valueHelp> + <format>4</format> + <description>Log error, warning and full information messages</description> + </valueHelp> + <valueHelp> + <format>5</format> + <description>Log all messages including debug messages</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-5"/> + </constraint> + </properties> + <defaultValue>3</defaultValue> + </leafNode> + </children> +</node> +<!-- include end --> |