Skip to content

Commit

Permalink
debug add logger info
Browse files Browse the repository at this point in the history
  • Loading branch information
sjib committed Jun 18, 2024
1 parent d8ee3a6 commit 3e37f9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions qgepqwat2ili/qgepdss/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,15 @@ def qgep_export(selection=None, labels_file=None, orientation=None):

# Filtering
filtered = selection is not None

# Logging for debugging
logger.info(f"print filtered '{filtered}'")

subset_ids = selection if selection is not None else []

# Logging for debugging
logger.info(f"print subset_ids '{subset_ids}'")

# Orientation
oriented = orientation is not None
if oriented:
Expand Down

0 comments on commit 3e37f9a

Please sign in to comment.