Skip to content

Commit

Permalink
remove logging that breaks unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Brunope committed May 3, 2024
1 parent 302828a commit d466997
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions records_mover/records/schema/schema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ def cast_dataframe_types(self,
"""
Returns a new dataframe with types that match what we know from this records schema.
"""
logger.info('**********************************************')
logger.info('CAST DATAFRAME TYPES')
fields = {field.name: field for field in self.fields}
logger.info(str(fields))
logger.info(df.to_string())
logger.info('**********************************************')
# logger.info('**********************************************')
# logger.info('CAST DATAFRAME TYPES')
# fields = {field.name: field for field in self.fields}
# logger.info(str(fields))
# logger.info(df.to_string())
# logger.info('**********************************************')
if '*' in df.columns:
raise Exception('Theres a *!!!')
# raise Exception('help')
Expand Down

0 comments on commit d466997

Please sign in to comment.