Don't set log level in the module itself.

Log levels should be set by the user of the module, usually at the
application level, rather than by each individual Python module.
This commit is contained in:
2016-09-15 14:37:15 +02:00
parent d6aed3491a
commit a3747e5a3e

View File

@@ -26,7 +26,6 @@ import struct
import tempfile
log = logging.getLogger("blendfile")
log.setLevel(logging.ERROR)
FILE_BUFFER_SIZE = 1024 * 1024