Make verbose the default log setting

This commit is contained in:
Markus Unterwaditzer 2014-03-05 16:19:12 +01:00
parent 0b0cf3c952
commit 8b4539e9e5
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
[general]
# A folder where vdirsyncer can store some metadata about each pair.
status_path = ~/.vdirsyncer/status/
#verbose = False
#verbose = True
# CONTACTS
[pair bob_contacts]

View file

@ -179,7 +179,7 @@ def _main(env, file_cfg):
app.register_command('sync', sync_command)
if general.get('verbose', False):
if general.get('verbose', True):
verbose_option()
else:
quiet_option()