diff options
| -rw-r--r-- | gui/src/renderer/app.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx index ccb06f33e3..155922bc4d 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); |
