summaryrefslogtreecommitdiff
path: root/inkstitch.py
diff options
context:
space:
mode:
authorKate Murphy <hello@kate.io>2019-04-21 13:12:12 -0400
committerKate Murphy <hello@kate.io>2019-04-21 13:12:12 -0400
commit4b99c70f862db8bd537f218c271fc368fd9d6bbb (patch)
tree79f06cf9698a3709019a443295162d68ed7c034d /inkstitch.py
parente717fa140d4d2b46bb4884999b945c9a875ef59d (diff)
Removed duplicated logging code
Diffstat (limited to 'inkstitch.py')
-rw-r--r--inkstitch.py10
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()