Skip to content

Commit 856f53c

Browse files
committed
Fix missing exception variable in log message
1 parent f68d349 commit 856f53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spns/register.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def unsubscribe():
190190
"message": "Timeout waiting for push notification backend",
191191
}
192192
)
193-
except Exception:
193+
except Exception as e:
194194
app.logger.warning(f"Error proxying subscription to hivemind backend: {e}")
195195
return jsonify(
196196
{

0 commit comments

Comments
 (0)