From 84340cba5c7bdfdd0de0033e6a43ef8ba8f00058 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Tue, 11 Nov 2025 16:56:59 +0100 Subject: [PATCH] Log actual import error (#17327) --- libs/importer/src/components/chrome/import-chrome.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/importer/src/components/chrome/import-chrome.component.ts b/libs/importer/src/components/chrome/import-chrome.component.ts index fd41d495132..5467b08ee61 100644 --- a/libs/importer/src/components/chrome/import-chrome.component.ts +++ b/libs/importer/src/components/chrome/import-chrome.component.ts @@ -142,6 +142,8 @@ export class ImportChromeComponent implements OnInit, OnDestroy { // If any of the login items has a failure return a generic error message // Introduced because we ran into a new type of V3 encryption added on Chrome that we don't yet support if (logins.some((l) => l.failure != null)) { + const error = logins.find((l) => l.failure != null); + this.logService.error("Chromium importer failure:", error.failure.error); return { errors: { message: this.i18nService.t("errorOccurred"),