Skip to content

Commit

Permalink
DRIVERS-828 log collection error should be a warning, because it will…
Browse files Browse the repository at this point in the history
… be retried
  • Loading branch information
p committed Oct 14, 2021
1 parent aa4e1e3 commit 08977fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astrolabe/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def check():

return True
except Exception as e:
LOGGER.error("Error retrieving logs for '%s': %s" % (cluster_name, e))
LOGGER.warn("Error retrieving logs for '%s': %s" % (cluster_name, e))
# Poller will retry log collection.
return False

Expand Down

0 comments on commit 08977fc

Please sign in to comment.