Skip to content

Commit

Permalink
Revise logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Dec 15, 2024
1 parent 5f789c6 commit 81472e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hstrat/dataframe/_surface_unpack_reconstruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def surface_unpack_reconstruct(df: pl.DataFrame) -> pl.DataFrame:
joined_columns = set(df.columns) - set(phylo_df.columns)
if joined_columns:
logging.info(f" - {len(joined_columns)} column to join")
logging.info(f" - joined columns: {[*joined_columns]}")
logging.info(f" - joining columns: {[*joined_columns]}")
phylo_df = phylo_df.join(df, on="dstream_data_id", how="left")
else:
logging.info(" - no columns to join, skipping")
Expand Down

0 comments on commit 81472e3

Please sign in to comment.