Skip to content
Discussion options

You must be logged in to vote

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)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@ideogram
Comment options

Answer selected by mozman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants