diff options
Diffstat (limited to 'gitautodeploy/parsers/generic.py')
-rw-r--r-- | gitautodeploy/parsers/generic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitautodeploy/parsers/generic.py b/gitautodeploy/parsers/generic.py index 7c7c7f5..3247662 100644 --- a/gitautodeploy/parsers/generic.py +++ b/gitautodeploy/parsers/generic.py @@ -13,7 +13,7 @@ class GenericRequestParser(WebhookRequestParser): ref = "" action = "" - logger.info("Received event from unknown origin. Assume generic data format.") + logger.debug("Received event from unknown origin. Assume generic data format.") if 'repository' not in data: logger.error("Unable to recognize data format") @@ -27,4 +27,4 @@ class GenericRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file |