Skip to content

Commit

Permalink
remove unimportant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcantor22 committed Jul 22, 2024
1 parent 56bbdd0 commit 7295d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mmeds/database/metadata_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ def create_import_data(self, table, verbose=True):
# Go through each row
for row in range(len(self.df.index)):
sql, args = self.builder.build_sql(table, row)
Logger.info(sql)
Logger.info(args)
# Logger.info(sql)
# Logger.info(args)
# Get any foreign keys which can also make this row unique
fkeys = ['{}={}'.format(key, value) for key, value in args.items() if '_id' in key]
# Create the entry
Expand Down

0 comments on commit 7295d07

Please sign in to comment.