Skip to content

Commit

Permalink
fix: repair debug commands
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Mar 4, 2024
1 parent 695b2e6 commit 7c52f15
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,11 @@ def check_RGT_in_domain(Gtrack_lowest, gdf):
interect_list = list(result)
interect_list.sort()

_logger.debug("RGT in domain: ", len(Gtrack_lowest["RGT"].unique()))
_logger.debug("RGT with data found: ", len(gdf_list))
_logger.debug("RGT in both: ", len(interect_list))
_logger.debug("RGT in domain: %s", len(Gtrack_lowest["RGT"].unique()))
_logger.debug("RGT with data found: %s", len(gdf_list))
_logger.debug("RGT in both: %s", len(interect_list))
if len(interect_list) != len(gdf_list):
_logger.debug("RGT not in both: ", list(set(gdf_list) - result))
_logger.debug("RGT not in both: %s", list(set(gdf_list) - result))
return interect_list


Expand Down

0 comments on commit 7c52f15

Please sign in to comment.