-
I'm very pleased with this powerful library! I'm cleaning up a project where ezdxf is part off, and I'd like to minimize the number of entries in the error log. Now, it strikes me that there are a lot of entries from ezdxf, that do not seem to indicate errors or problems. I wonder:
Here's an example of the message in the error log of the server:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
ezdxf uses standard python logging so you should be able to silence all log messages with logging.getLogger('ezdxf').setLevel(logging.CRITICAL) if you want to disable the 'chitchatting' messages but want to be informed about warnings or errors you could do logging.getLogger('ezdxf').setLevel(logging.WARNING) |
Beta Was this translation helpful? Give feedback.
ezdxf uses standard python logging so you should be able to silence all log messages with
if you want to disable the 'chitchatting' messages but want to be informed about warnings or errors you could do