Make logging obey where it's imported from
parent
964c0c4601
commit
0d310e19c6
|
@ -4,8 +4,9 @@ import re
|
|||
import json
|
||||
import copy
|
||||
import math
|
||||
import logging as lg
|
||||
lg.basicConfig(level=lg.DEBUG)
|
||||
import logging
|
||||
logging.basicConfig()
|
||||
lg = logging.getLogger(__name__)
|
||||
|
||||
def parse(input, format, **kwargs):
|
||||
fullPath = input
|
||||
|
|
Loading…
Reference in New Issue