diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-05-30 17:27:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 17:27:15 +0200 |
commit | 22506533e995dfb14770a841a8baf52d74b0e176 (patch) | |
tree | 600b74718074cb6d87827bb5f23dc86269bdb24a /interface-definitions/include | |
parent | 9859440abcad1e32b76b14a413c84c218f48bc0b (diff) | |
parent | 4d84f786f64d2b80046100ead5d0e8c1eef7418c (diff) | |
download | vyos-1x-22506533e995dfb14770a841a8baf52d74b0e176.tar.gz vyos-1x-22506533e995dfb14770a841a8baf52d74b0e176.zip |
Merge pull request #3510 from HollyGurza/T4576
T4576: Accel-ppp logging level configuration
Diffstat (limited to 'interface-definitions/include')
-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 --> |