Skip to content

Commit

Permalink
add info message
Browse files Browse the repository at this point in the history
  • Loading branch information
estshorter committed Aug 19, 2021
1 parent 50d2635 commit ca6f351
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lwpipe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
logger = logging.getLogger(__name__)


__version__ = "5.1.0"
__version__ = "5.1.1"


class DumpType(IntEnum):
Expand Down Expand Up @@ -202,6 +202,9 @@ def _handle_ignore_list(
if nodes[0].inputs is None:
nodes[0].inputs = self.nodes[0].inputs

ignore_set_str = [self.nodes[ignore].name for ignore in ignore_set]
logger.info(f"ignored: {ignore_set_str}")

return Pipeline(nodes, names).run(from_, to_)

def run(
Expand Down

0 comments on commit ca6f351

Please sign in to comment.