Skip to content

Commit

Permalink
Add debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sol committed Aug 13, 2024
1 parent 922974e commit b4f2ee2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/subscript/genertobs_unstable/_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ def convert_rft_to_list(frame: pd.DataFrame) -> list:
"date",
]
relevant_columns = keepers + additionals
narrowed_down = frame.loc[:, frame.columns.isin(relevant_columns)]
logger.debug("Hoping for these columns %s, available are %s",
relevant_columns, frame.columns.to_list())
narrowed_down = frame.loc[:, frame.columns.isin(relevant_columns)]
well_names = narrowed_down.well_name.unique().tolist()
logger.debug("%s wells to write (%s)", len(well_names), well_names)
for well_name in well_names:
Expand Down

0 comments on commit b4f2ee2

Please sign in to comment.