How disable logs? #829
Answered
by
snowman2
ahvahsky2008
asked this question in
Q&A
-
How disable output logs. I not need it) |
Beta Was this translation helpful? Give feedback.
Answered by
snowman2
Apr 17, 2021
Replies: 1 comment 1 reply
-
Probably related to #822 Disable logger or change level: pyproj_logger = logging.getLogger("pyproj")
pyproj_logger.disabled = True
# or
pyproj_logger = logging.getLogger("pyproj")
pyproj_logger.setLevel(logging.WARN) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ahvahsky2008
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Probably related to #822
Disable logger or change level: