diff options
| author | Kate Murphy <hello@kate.io> | 2019-04-21 13:12:12 -0400 |
|---|---|---|
| committer | Kate Murphy <hello@kate.io> | 2019-04-21 13:12:12 -0400 |
| commit | 4b99c70f862db8bd537f218c271fc368fd9d6bbb (patch) | |
| tree | 79f06cf9698a3709019a443295162d68ed7c034d | |
| parent | e717fa140d4d2b46bb4884999b945c9a875ef59d (diff) | |
Removed duplicated logging code
| -rw-r--r-- | inkstitch.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/inkstitch.py b/inkstitch.py index 8a3ac626..840cdc58 100644 --- a/inkstitch.py +++ b/inkstitch.py @@ -20,16 +20,6 @@ ch.setFormatter(formatter) logger.addHandler(ch) -logger = logging.getLogger('shapely.geos') -logger.setLevel(logging.DEBUG) -shapely_errors = StringIO() -ch = logging.StreamHandler(shapely_errors) -ch.setLevel(logging.DEBUG) -formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') -ch.setFormatter(formatter) -logger.addHandler(ch) - - parser = ArgumentParser() parser.add_argument("--extension") my_args, remaining_args = parser.parse_known_args() |
