From 8b4539e9e597d4e00d42385f72ce5108f678f9a1 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 5 Mar 2014 16:19:12 +0100 Subject: [PATCH] Make verbose the default log setting --- config.example | 2 +- vdirsyncer/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.example b/config.example index e646c3f..f9961ef 100644 --- a/config.example +++ b/config.example @@ -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] diff --git a/vdirsyncer/cli.py b/vdirsyncer/cli.py index 20bcc1f..3bd0862 100644 --- a/vdirsyncer/cli.py +++ b/vdirsyncer/cli.py @@ -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()