From ba53b3236eb45989e652c5f805fdb9f09a73bda3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 4 Feb 2026 15:37:39 +0100 Subject: [PATCH] Reduce log level after an orphan perspective got fixed. --- .../eclipseui/org/eclipse/ui/internal/WorkbenchPage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/internal/WorkbenchPage.java b/bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/internal/WorkbenchPage.java index 2e3300d0c22b..1a86593f6184 100644 --- a/bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/internal/WorkbenchPage.java +++ b/bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/internal/WorkbenchPage.java @@ -3932,7 +3932,7 @@ private PerspectiveDescriptor fixOrphanPerspective(MPerspective mperspective) { String perspId = mperspective.getElementId(); String label = mperspective.getLabel(); String msg = "Perspective with name '" + label + "' and id '" + perspId + "' has been made into a local copy"; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ - IStatus status = StatusUtil.newStatus(IStatus.WARNING, msg, null); + IStatus status = StatusUtil.newStatus(IStatus.INFO, msg, null); StatusManager.getManager().handle(status, StatusManager.LOG); String newDescId = NLS.bind(WorkbenchMessages.Perspective_localCopyLabel, label);