Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
calgray committed May 24, 2022
1 parent c8a8b61 commit 4b5bf66
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions daliuge-engine/dlg/environmentvar_drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@
import io
import os
import json
import logging

from dlg.drop import AbstractDROP, DEFAULT_INTERNAL_PARAMETERS
from dlg.io import MemoryIO

logger = logging.getLogger(__name__)

class KeyValueDROP:
@abc.abstractmethod
Expand Down Expand Up @@ -79,7 +77,6 @@ def initialize(self, **kwargs):
"""
Runs through all parameters, putting each into this drop's variable dict
"""
logger.warning(f"params {self.parameters}")
super(EnvironmentVarDROP, self).initialize(**kwargs)
self._variables = dict()
self._variables.update(_filter_parameters(self.parameters))
Expand Down

0 comments on commit 4b5bf66

Please sign in to comment.