removed an unnecessary f-string on an info logging (#355)

This commit is contained in:
danielsagi
2020-06-08 15:04:29 +03:00
committed by GitHub
parent 4484ad734f
commit 78c0133d9d
+1 -1
View File
@@ -148,7 +148,7 @@ class NewHostEvent(Event):
).json()
return result["cloud"] or "NoCloud"
except requests.ConnectionError:
logger.info(f"Failed to connect cloud type service", exc_info=True)
logger.info("Failed to connect cloud type service", exc_info=True)
except Exception:
logger.warning(f"Unable to check cloud of {self.host}", exc_info=True)
return "NoCloud"