From a3747e5a3eb465ce57aed67fc0769c7d75493a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 15 Sep 2016 14:37:15 +0200 Subject: [PATCH] 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. --- bam/blend/blendfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bam/blend/blendfile.py b/bam/blend/blendfile.py index 3560f9e..68a3956 100644 --- a/bam/blend/blendfile.py +++ b/bam/blend/blendfile.py @@ -26,7 +26,6 @@ import struct import tempfile log = logging.getLogger("blendfile") -log.setLevel(logging.ERROR) FILE_BUFFER_SIZE = 1024 * 1024