Fixing changelog. Removing unneeded log message.

This commit is contained in:
Gareth J. Greenaway 2021-07-29 08:58:22 -07:00 committed by Megan Wilhite
parent bb4e073cef
commit 142c2e7867
2 changed files with 1 additions and 2 deletions

View file

@ -1,2 +1,2 @@
Have the beacon call run through a try...except, catching any errors, logging and firing an event that includes the error.
Fixing the swapusage beacon to ensure value is a tring before we attempt to filter out the %.
Fixing the swapusage beacon to ensure value is a string before we attempt to filter out the %.

View file

@ -128,7 +128,6 @@ class Beacon:
# Fire the beacon!
error = None
try:
log.debug(self.beacons[fun_str])
raw = self.beacons[fun_str](b_config[mod])
except: # pylint: disable=bare-except
error = "{}".format(sys.exc_info()[1])