We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71322e9 commit 6c2406cCopy full SHA for 6c2406c
app/app.py
@@ -259,7 +259,7 @@ def get_es() -> EventStreamGetResponse:
259
def delete_es(es_id: int):
260
"""Destroys an existing event-stream."""
261
262
- _LOGGER.info("Deleting event stream %s...", es_id)
+ _LOGGER.info("Request to delete event stream %s...", es_id)
263
264
# Get the ES record (by primary key)
265
db = sqlite3.connect(_DATABASE_PATH)
@@ -272,6 +272,10 @@ def delete_es(es_id: int):
272
detail=f"EventStream {es_id} is not known",
273
)
274
275
+ _LOGGER.info(
276
+ "Deleting event stream %s (uuid=%s routing_key=%s)", es_id, es[1], es[2]
277
+ )
278
+
279
# Delete the ES record...
280
281
cursor = db.cursor()
0 commit comments