Uses of Interface
org.apache.logging.log4j.message.EntryMessage
-
Packages that use EntryMessage Package Description org.apache.logging.log4j Public API for Log4j 2.org.apache.logging.log4j.message Public Message Types used for Log4j 2.org.apache.logging.log4j.spi Internal interfaces and classes to be used by authors of logging implementations or for internal use by API classes. -
-
Uses of EntryMessage in org.apache.logging.log4j
Methods in org.apache.logging.log4j that return EntryMessage Modifier and Type Method Description EntryMessage
Logger. traceEntry()
Logs entry to a method.EntryMessage
Logger. traceEntry(String format, Object... params)
Logs entry to a method along with its parameters.EntryMessage
Logger. traceEntry(String format, Supplier<?>... paramSuppliers)
Logs entry to a method along with its parameters.EntryMessage
Logger. traceEntry(Message message)
Logs entry to a method using a Message to describe the parameters.EntryMessage
Logger. traceEntry(Supplier<?>... paramSuppliers)
Logs entry to a method along with its parameters.Methods in org.apache.logging.log4j with parameters of type EntryMessage Modifier and Type Method Description void
Logger. traceExit(EntryMessage message)
Logs exiting from a method with no result.<R> R
Logger. traceExit(EntryMessage message, R result)
Logs exiting from a method with the result. -
Uses of EntryMessage in org.apache.logging.log4j.message
Methods in org.apache.logging.log4j.message that return EntryMessage Modifier and Type Method Description EntryMessage
DefaultFlowMessageFactory. newEntryMessage(Message message)
EntryMessage
FlowMessageFactory. newEntryMessage(Message message)
Creates a new entry message based on an existing message.Methods in org.apache.logging.log4j.message with parameters of type EntryMessage Modifier and Type Method Description ExitMessage
DefaultFlowMessageFactory. newExitMessage(Object result, EntryMessage message)
ExitMessage
DefaultFlowMessageFactory. newExitMessage(EntryMessage message)
ExitMessage
FlowMessageFactory. newExitMessage(Object result, EntryMessage message)
Creates a new exit message based on a return value and an existing entry message.ExitMessage
FlowMessageFactory. newExitMessage(EntryMessage message)
Creates a new exit message based on no return value and an existing entry message. -
Uses of EntryMessage in org.apache.logging.log4j.spi
Methods in org.apache.logging.log4j.spi that return EntryMessage Modifier and Type Method Description protected EntryMessage
AbstractLogger. enter(String fqcn, String format, Object... params)
Logs entry to a method with location information.protected EntryMessage
AbstractLogger. enter(String fqcn, String format, MessageSupplier... paramSuppliers)
Deprecated.protected EntryMessage
AbstractLogger. enter(String fqcn, String format, Supplier<?>... paramSuppliers)
Logs entry to a method with location information.protected EntryMessage
AbstractLogger. enter(String fqcn, Message message)
Logs entry to a method with location information.protected EntryMessage
AbstractLogger. enter(String fqcn, MessageSupplier msgSupplier)
Deprecated.protected EntryMessage
AbstractLogger. entryMsg(String format, Object... params)
protected EntryMessage
AbstractLogger. entryMsg(String format, MessageSupplier... paramSuppliers)
protected EntryMessage
AbstractLogger. entryMsg(String format, Supplier<?>... paramSuppliers)
EntryMessage
AbstractLogger. traceEntry()
EntryMessage
AbstractLogger. traceEntry(String format, Object... params)
EntryMessage
AbstractLogger. traceEntry(String format, Supplier<?>... paramSuppliers)
EntryMessage
AbstractLogger. traceEntry(Message message)
EntryMessage
AbstractLogger. traceEntry(Supplier<?>... paramSuppliers)
Methods in org.apache.logging.log4j.spi with parameters of type EntryMessage Modifier and Type Method Description void
AbstractLogger. traceExit(EntryMessage message)
<R> R
AbstractLogger. traceExit(EntryMessage message, R result)
-