Package org.nuxeo.common.logging
Class SequenceTracer
- java.lang.Object
-
- org.nuxeo.common.logging.SequenceTracer
-
@Deprecated(since="11.1") public class SequenceTracer extends Object
Deprecated.since 11.1 useTracing
instead.Helper to log information that can be displayed using plantuml to render sequence UML diagram.- Since:
- 8.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
addNote(String message)
Deprecated.static void
addRelation(String source, String message)
Deprecated.static void
destroy(String message)
Deprecated.static String
getThreadName()
Deprecated.static boolean
isEnabled()
Deprecated.static void
mark(String message)
Deprecated.static void
start(String message)
Deprecated.static void
start(String message, String color)
Deprecated.static void
startFrom(String callerThread, String message)
Deprecated.static void
startFrom(String callerThread, String message, String color)
Deprecated.static void
stop(String message)
Deprecated.
-
-
-
Method Detail
-
mark
@Deprecated(since="11.1") public static void mark(String message)
Deprecated.Mark an event.
-
start
@Deprecated(since="11.1") public static void start(String message)
Deprecated.Mark the beginning of an action
-
start
@Deprecated(since="11.1") public static void start(String message, String color)
Deprecated.Mark the beginning of an action
-
startFrom
@Deprecated(since="11.1") public static void startFrom(String callerThread, String message)
Deprecated.Mark the beginning of an action initiated by the caller.
-
startFrom
@Deprecated(since="11.1") public static void startFrom(String callerThread, String message, String color)
Deprecated.Mark the beginning of an action initiated by the caller.
-
stop
@Deprecated(since="11.1") public static void stop(String message)
Deprecated.Mark the end of the previous action.
-
destroy
@Deprecated(since="11.1") public static void destroy(String message)
Deprecated.Mark the last action as failure
-
addNote
@Deprecated(since="11.1") public static void addNote(String message)
Deprecated.Add a note on the current thread
-
addRelation
@Deprecated(since="11.1") public static void addRelation(String source, String message)
Deprecated.Link from source to current thread.
-
getThreadName
@Deprecated(since="11.1") public static String getThreadName()
Deprecated.Get the thread name sanitized for plantuml
-
isEnabled
@Deprecated(since="11.1") public static boolean isEnabled()
Deprecated.
-
-