Skip to content

Commit

Permalink
TypeError in logging fixed
Browse files Browse the repository at this point in the history
patch by Ekaterina Dimitrova; reviewed by Brandon Williams for CASSANDRA-19446
  • Loading branch information
ekaterinadimitrova2 committed Feb 27, 2024
1 parent aec94d6 commit e184696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conftest.py
Expand Up @@ -370,7 +370,7 @@ def fixture_dtest_setup(request,
if failed or not dtest_config.delete_logs:
copy_logs(request, dtest_setup.cluster)
except Exception as e:
logger.error("Error saving log:", str(e))
logger.error("Error saving log: %s", str(e))
finally:
dtest_setup.cleanup_cluster(request, failed)

Expand Down

0 comments on commit e184696

Please sign in to comment.