Skip to content

Commit

Permalink
Reduce warning
Browse files Browse the repository at this point in the history
  • Loading branch information
k2bd committed Oct 12, 2024
1 parent 84b4fce commit efa3357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flux/migration/read_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _read_repeatable_migrations(
migrations = []
migrations_dir = os.path.join(config.migration_directory, migration_subdir)
if not os.path.exists(migrations_dir):
logger.warning(f"No repeatable migrations directory {migrations_dir!r}")
logger.info(f"No repeatable migrations directory {migrations_dir!r}")
return []
for migration_file in os.listdir(migrations_dir):
if migration_file.endswith(".sql"):
Expand Down

0 comments on commit efa3357

Please sign in to comment.