Skip to content

Commit 6d24eb7

Browse files
committed
According to docs, logger was to be using "owslib" namespace
1 parent e9a9bb3 commit 6d24eb7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

owslib/util.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
# Contact email: tomkralidis@gmail.com
88
# =============================================================================
99

10-
import logging as log
10+
import logging
1111
import os
12-
import sys
1312
from collections import OrderedDict
1413
from dateutil import parser
1514
from datetime import datetime, timedelta
@@ -33,6 +32,10 @@
3332
"""
3433

3534

35+
# This is used by other modules
36+
log = logging.getLogger('owslib')
37+
38+
3639
class ServiceException(Exception):
3740
# TODO: this should go in ows common module when refactored.
3841
pass

0 commit comments

Comments
 (0)