diff --git a/mitmproxy2swagger/mitmproxy2swagger.py b/mitmproxy2swagger/mitmproxy2swagger.py index 9c22bd3..4a1d071 100755 --- a/mitmproxy2swagger/mitmproxy2swagger.py +++ b/mitmproxy2swagger/mitmproxy2swagger.py @@ -152,8 +152,6 @@ def main(): # new endpoints will be added here so that they can be added as comments in the swagger file new_path_templates = [] for path in path_templates: - print("Compiling path " + path) - print("Compiled to regex: " + path_to_regex(path)) re.compile(path_to_regex(path)) path_template_regexes = [re.compile(path_to_regex(path)) for path in path_templates]