diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-10-03 07:59:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-03 07:59:38 +0200 |
| commit | ec939ce053e748c984faa98e22913b4421b674ac (patch) | |
| tree | d5443de55b4e80bd268130e2651869592f512184 /python | |
| parent | 4d0dcf193e6c26114acf2704e41eeb986b9da3c9 (diff) | |
| parent | 0f0a5b3028155b9af81cb092ce1984a72e8e1722 (diff) | |
| download | vyos-1x-ec939ce053e748c984faa98e22913b4421b674ac.tar.gz vyos-1x-ec939ce053e748c984faa98e22913b4421b674ac.zip | |
Merge pull request #4771 from jestabro/airbag-enable-log-false
T7903: set airbag enable to default log=False
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/airbag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/airbag.py b/python/vyos/airbag.py index bba8fc9fd..69b44dc9d 100644 --- a/python/vyos/airbag.py +++ b/python/vyos/airbag.py @@ -23,7 +23,7 @@ from vyos.version import get_full_version_data from vyos.defaults import airbag_noteworthy_size -def enable(log=True): +def enable(log=False): if 'nose2' in sys.modules: return if log: |
