Set debug messages to logged debugs instead of prints

This commit is contained in:
April 2022-10-20 00:29:53 -07:00
parent 7dbf37cd08
commit c20d9be311
No known key found for this signature in database
GPG Key ID: 17A9A017FAA4DE5E
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ for i in MPC.getPrimaryLocations():
zipCodes.append(LFR.getZip(i))
airports = MPC.getAirportCodes()
print(airports)
l.debug(airports)
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'

View File

@ -26,7 +26,7 @@ for i in MPC.getPrimaryLocations():
coopIds.append(LFR.getCoopId(i))
geocodes.append(LFR.getLatLong(i).replace('/', ','))
print(coopIds, geocodes)
l.debug(coopIds, geocodes)
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'

View File

@ -27,7 +27,7 @@ for i in MPC.getPrimaryLocations():
pollenIds.append(LFR.getPollenInfo(i))
geocodes.append(LFR.getLatLong(i).replace('/', ','))
print(pollenIds, geocodes)
l.debug(pollenIds, geocodes)
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'