From ffb61d8f2152643acd384279b537b83e2049c450 Mon Sep 17 00:00:00 2001 From: Oskar Nyberg Date: Fri, 8 Sep 2023 09:58:18 +0200 Subject: [PATCH] Add logging of account expiry when running tests --- gui/src/renderer/app.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx index ccb06f33e3c7..155922bc4d0d 100644 --- a/gui/src/renderer/app.tsx +++ b/gui/src/renderer/app.tsx @@ -899,6 +899,10 @@ export default class AppRenderer { } private setAccountExpiry(expiry?: string) { + if (window.env.e2e && expiry) { + log.verbose('Expiry of account:', expiry); + } + const state = this.reduxStore.getState(); const previousExpiry = state.account.expiry; this.reduxActions.account.updateAccountExpiry(expiry);