Skip to content

Commit

Permalink
fix log level on qgis 3.16 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik authored Jan 7, 2022
1 parent 0877848 commit 54b1cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gis4wrf/plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def report_bug(self) -> None:
def init_logging(self) -> None:
levels = {
# https://github.com/qgis/QGIS/issues/42996
logging.NOTSET: Qgis.NoLevel if hasattr(Qgis, 'NoLevel') else getattr(Qgis, 'None'),
logging.NOTSET: Qgis.NoLevel if hasattr(Qgis, 'NoLevel') else Qgis.Info,

logging.DEBUG: Qgis.Info,
logging.INFO: Qgis.Info,
Expand Down

0 comments on commit 54b1cba

Please sign in to comment.