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 /data/templates/accel-ppp/sstp.config.j2 | |
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 'data/templates/accel-ppp/sstp.config.j2')
-rw-r--r-- | data/templates/accel-ppp/sstp.config.j2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/templates/accel-ppp/sstp.config.j2 b/data/templates/accel-ppp/sstp.config.j2 index 22fb55506..38da829f3 100644 --- a/data/templates/accel-ppp/sstp.config.j2 +++ b/data/templates/accel-ppp/sstp.config.j2 @@ -29,7 +29,9 @@ max-starting={{ max_concurrent_sessions }} [log] syslog=accel-sstp,daemon copy=1 -level=5 +{% if log.level is vyos_defined %} +level={{ log.level }} +{% endif %} [client-ip-range] 0.0.0.0/0 |