Skip to content

Commit

Permalink
Fix for use of log.trace in Slurm runner
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Dec 18, 2018
1 parent bfc634e commit d4c6921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/jobs/runners/slurm.py
@@ -1,7 +1,6 @@
"""
SLURM job control via the DRMAA API.
"""
import logging
import os
import re
import shutil
Expand All @@ -11,8 +10,9 @@

from galaxy import model
from galaxy.jobs.runners.drmaa import DRMAAJobRunner
from galaxy.util.logging import get_logger

log = logging.getLogger(__name__)
log = get_logger(__name__)

__all__ = ('SlurmJobRunner', )

Expand Down

0 comments on commit d4c6921

Please sign in to comment.