Skip to content

Commit

Permalink
Missing histogram can be warning for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ddxv committed Oct 8, 2023
1 parent 8070684 commit b1eb436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adscrawler/app_stores/apple.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def clean_ios_app_df(df: pd.DataFrame) -> pd.DataFrame:
lambda x: [int(num) for num in re.findall(r"\d+", x)[1::2]]
)
except Exception:
logger.exception("Unable to parse histogram")
logger.warning("Unable to parse histogram")
df["histogram"] = None
return df

Expand Down

0 comments on commit b1eb436

Please sign in to comment.