diff --git a/apps/files/src/actions/openLocallyAction.ts b/apps/files/src/actions/openLocallyAction.ts index 071fddcc5e0..cf948da889f 100644 --- a/apps/files/src/actions/openLocallyAction.ts +++ b/apps/files/src/actions/openLocallyAction.ts @@ -109,12 +109,12 @@ async function confirmLocalEditDialog(): Promise<'online'|'local'|false> { }, ]) .build() - + try { await dialog.show() } catch (error) { - logger.debug('"Open locally" dialog closed') + logger.debug('Open locally dialog closed', { error }) } - + return result }