AequilibraE / qaequilibrae

Free QGIS add-on for transportation modeling
https://www.aequilibrae.com/qgis/latest/
Other
75 stars 24 forks source link

Don't use "CRITICAL" stream for standard logging #219

Open jamiecook opened 1 year ago

jamiecook commented 1 year ago

This should help to address confusion like #214 We could also do something like

level = Info
if "WARNING" in line:
    level = Warning
if "ERROR" in line:
    level = Critical
log(line, level)

NOTE: Code is currently untested.