Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortlandre2009-12-11 10:45:35 +0000
committertlandre2009-12-11 10:45:35 +0000
commitc5a2141f5fa69e7b8d804e9d7bd741f70fc24d55 (patch)
tree7eae972c12e15dea8ddcc3a26069d2687eb71862 /plugins
parentbd152eb369b69ebe11c913e39b3135d741037dad (diff)
downloadorg.eclipse.papyrus-c5a2141f5fa69e7b8d804e9d7bd741f70fc24d55.tar.gz
org.eclipse.papyrus-c5a2141f5fa69e7b8d804e9d7bd741f70fc24d55.tar.xz
org.eclipse.papyrus-c5a2141f5fa69e7b8d804e9d7bd741f70fc24d55.zip
RESOLVED - bug 292256: [General] Improve logs management
https://bugs.eclipse.org/bugs/show_bug.cgi?id=292256 Mark PapyrusTrace as deprecated
Diffstat (limited to 'plugins')
-rw-r--r--plugins/core/org.eclipse.papyrus.core/src/org/eclipse/papyrus/core/utils/PapyrusTrace.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/core/org.eclipse.papyrus.core/src/org/eclipse/papyrus/core/utils/PapyrusTrace.java b/plugins/core/org.eclipse.papyrus.core/src/org/eclipse/papyrus/core/utils/PapyrusTrace.java
index 7b750b50db8..2d8452f174f 100644
--- a/plugins/core/org.eclipse.papyrus.core/src/org/eclipse/papyrus/core/utils/PapyrusTrace.java
+++ b/plugins/core/org.eclipse.papyrus.core/src/org/eclipse/papyrus/core/utils/PapyrusTrace.java
@@ -14,13 +14,16 @@ import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Status;
import org.eclipse.papyrus.core.Activator;
+import org.eclipse.papyrus.log.LogHelper;
/**
* Utility class to log errors or debug information either in the plugin'log or in the console.
* <p>
* A set of channels is used to separate different traces for different aspects. A short list is displayed at the end of the file to give an example
* of channels
+ * @deprecated Use {@link LogHelper} instead
**/
+@Deprecated
public class PapyrusTrace implements IDebugChannel {
public static final String PAPYRUS_CORE = "org.eclipse.papyrus.core/debug";

Back to the top