From 06bb57fed894cd133a09f6356319094dbf92924f Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Mon, 22 Jun 2020 20:51:48 -0600 Subject: [PATCH] Log on returning uid --- backend/src/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/api.ts b/backend/src/api.ts index 9897468..2c905e9 100644 --- a/backend/src/api.ts +++ b/backend/src/api.ts @@ -205,6 +205,7 @@ export class Session { } if (this.uidCleanup) { await this.uidCleanup(); + this.log(`Returned uid ${this.uid}`); } }; }