Skip to content

Commit f4f66ef

Browse files
committed
Add some more debug output to test_gridmap.py
1 parent 5d839fa commit f4f66ef

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_gridmap.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
import logging
2626

27+
import gridmap
2728
from gridmap import Job, process_jobs, grid_map
2829

2930
from nose.tools import eq_
@@ -33,7 +34,8 @@
3334
logging.captureWarnings(True)
3435
logging.basicConfig(format=('%(asctime)s - %(name)s - %(levelname)s - ' +
3536
'%(message)s'), level=logging.DEBUG)
36-
37+
logger = logging.getLogger(__name__)
38+
logger.debug('Path to gridmap: %s', gridmap)
3739

3840
def compute_factorial(n):
3941
ret = 1

0 commit comments

Comments
 (0)