Commit db36a376 authored by Dan Pascu's avatar Dan Pascu

Replaced log.err with log.exception

parent 14834b41
...@@ -165,7 +165,7 @@ class VirtualGroup(SettingsState): ...@@ -165,7 +165,7 @@ class VirtualGroup(SettingsState):
try: try:
configuration.save() configuration.save()
except Exception, e: except Exception, e:
log.err() log.exception()
notification_center.post_notification('CFGManagerSaveFailed', sender=configuration, data=NotificationData(object=self, operation='save', modified=modified_data, exception=e)) notification_center.post_notification('CFGManagerSaveFailed', sender=configuration, data=NotificationData(object=self, operation='save', modified=modified_data, exception=e))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment