mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-19 08:26:24 +00:00
This script is very "chatty" when "log level" is set to a high number (usual scenario on developer machine)
10 lines
145 B
Python
Executable File
10 lines
145 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys
|
|
import samba.param
|
|
|
|
a = samba.param.LoadParm()
|
|
a.set('debug level', '0')
|
|
a.load_default()
|
|
print a.get(sys.argv[1])
|