Make logging obey where it's imported from

master^2
Aaron Goldstein 2020-07-15 12:43:41 -07:00
parent 964c0c4601
commit 0d310e19c6
1 changed files with 3 additions and 2 deletions

View File

@ -4,8 +4,9 @@ import re
import json import json
import copy import copy
import math import math
import logging as lg import logging
lg.basicConfig(level=lg.DEBUG) logging.basicConfig()
lg = logging.getLogger(__name__)
def parse(input, format, **kwargs): def parse(input, format, **kwargs):
fullPath = input fullPath = input