diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-05-07 19:37:25 +0200 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-05-07 19:37:25 +0200 |
commit | b72fbdfe8626fb68cf430995270c104b86d5e876 (patch) | |
tree | ba07d7c2f0c69715c200f1f2150dd7c6b92471aa /gitautodeploy/cli/config.py | |
parent | 703ff62ad8e386e7d9c0e545f60e46fff93ea8e5 (diff) | |
download | Git-Auto-Deploy-b72fbdfe8626fb68cf430995270c104b86d5e876.zip Git-Auto-Deploy-b72fbdfe8626fb68cf430995270c104b86d5e876.tar.gz Git-Auto-Deploy-b72fbdfe8626fb68cf430995270c104b86d5e876.tar.bz2 |
Config option to set a custom logging level
Diffstat (limited to 'gitautodeploy/cli/config.py')
-rw-r--r-- | gitautodeploy/cli/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py index 73fb96f..bdbe12f 100644 --- a/gitautodeploy/cli/config.py +++ b/gitautodeploy/cli/config.py @@ -15,6 +15,9 @@ def get_config_defaults(): config['port'] = 8001 config['intercept-stdout'] = True + # Record all log levels by default + config['log-level'] = 'NOTSET' + # Include details with deploy command return codes in HTTP response. Causes # to await any git pull or deploy command actions before it sends the # response. |