Skip to content

Commit

Permalink
Makes the default for log_keys_only True
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Mason committed Oct 5, 2016
1 parent 8fb7432 commit b25485b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staticconf/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def load_config_data(loader_func, *args, **kwargs):
def build_loader(loader_func):
def loader(*args, **kwargs):
err_on_unknown = kwargs.pop('error_on_unknown', False)
log_keys_only = kwargs.pop('log_keys_only', False)
log_keys_only = kwargs.pop('log_keys_only', True)
err_on_dupe = kwargs.pop('error_on_duplicate', False)
flatten = kwargs.pop('flatten', True)
name = kwargs.pop('namespace', config.DEFAULT)
Expand Down

0 comments on commit b25485b

Please sign in to comment.