Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-04-09 12:58:26 +0000
committerThomas Watson2013-04-09 12:58:26 +0000
commit7b5fe0f65a3b652489b7bcbb4aae8331f908a7f6 (patch)
tree0ee9c7f32c1e66b4f4e7c240706ee91160e7a20b
parentaaeeb05df81b83e0e67697ea1d0617923263ec51 (diff)
downloadrt.equinox.framework-7b5fe0f65a3b652489b7bcbb4aae8331f908a7f6.tar.gz
rt.equinox.framework-7b5fe0f65a3b652489b7bcbb4aae8331f908a7f6.tar.xz
rt.equinox.framework-7b5fe0f65a3b652489b7bcbb4aae8331f908a7f6.zip
Bug 405252 - cycle is logged with warning severity but messages says: "Info:" I20130409-0900
-rw-r--r--bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/EclipseLazyStarter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/EclipseLazyStarter.java b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/EclipseLazyStarter.java
index e1c34d4df..963da7827 100644
--- a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/EclipseLazyStarter.java
+++ b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/EclipseLazyStarter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2012 IBM Corporation and others.
+ * Copyright (c) 2006, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -255,7 +255,7 @@ public class EclipseLazyStarter implements ClassLoadingStatsHook, AdaptorHook, H
}
cycleText.setCharAt(cycleText.length() - 1, ']');
String message = NLS.bind(EclipseAdaptorMsg.ECLIPSE_BUNDLESTOPPER_CYCLES_FOUND, cycleText);
- FrameworkLogEntry entry = new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, FrameworkLogEntry.WARNING, 0, message, 0, null, null);
+ FrameworkLogEntry entry = new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, FrameworkLogEntry.INFO, 0, message, 0, null, null);
adaptor.getFrameworkLog().log(entry);
}
}

Back to the top