mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Make verbose the default log setting
This commit is contained in:
parent
0b0cf3c952
commit
8b4539e9e5
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
[general]
|
[general]
|
||||||
# A folder where vdirsyncer can store some metadata about each pair.
|
# A folder where vdirsyncer can store some metadata about each pair.
|
||||||
status_path = ~/.vdirsyncer/status/
|
status_path = ~/.vdirsyncer/status/
|
||||||
#verbose = False
|
#verbose = True
|
||||||
|
|
||||||
# CONTACTS
|
# CONTACTS
|
||||||
[pair bob_contacts]
|
[pair bob_contacts]
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ def _main(env, file_cfg):
|
||||||
|
|
||||||
app.register_command('sync', sync_command)
|
app.register_command('sync', sync_command)
|
||||||
|
|
||||||
if general.get('verbose', False):
|
if general.get('verbose', True):
|
||||||
verbose_option()
|
verbose_option()
|
||||||
else:
|
else:
|
||||||
quiet_option()
|
quiet_option()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue