Remove logging.basicConfig calls from tests

And remove one from blocktypes. What was it even doing there?
This commit is contained in:
David Vierra 2015-10-30 04:55:10 -10:00
parent b92ac828aa
commit 261df22b80
5 changed files with 0 additions and 12 deletions

View File

@ -14,8 +14,6 @@ from mceditlib.blocktypes.json_resources import openResource, getJsonFile
log = getLogger(__name__)
import logging
logging.basicConfig(level=logging.INFO)
MCYDecreasing = 0
MCYIncreasing = 1

View File

@ -1,4 +1 @@
__author__ = 'Rio'
#import logging
#logging.basicConfig(level=logging.DEBUG)

View File

@ -5,10 +5,6 @@ from __future__ import absolute_import, division, print_function
from collections import deque
import logging
log = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)
def testThrashing(pc_world):
if not hasattr(pc_world, '_chunkDataCache'):

View File

@ -1,8 +1,6 @@
from mceditlib.worldeditor import WorldEditor
import logging
import numpy
logging.basicConfig(level=logging.INFO)
def test_relight(schematic_world, pc_world):

View File

@ -6,7 +6,6 @@ from mceditlib.revisionhistory import RevisionHistory
import logging
log = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)
from .conftest import copy_temp_file