Class ActorTrace

java.lang.Object
io.dapr.actors.ActorTrace

public final class ActorTrace extends Object
Class to emit trace log messages.
  • Constructor Details

    • ActorTrace

      public ActorTrace()
  • Method Details

    • writeInfo

      public void writeInfo(String type, String id, String msgFormat, Object... params)
      Writes an information trace log.
      Parameters:
      type - Type of log.
      id - Instance identifier.
      msgFormat - Message or message format (with type and id input as well).
      params - Params for the message.
    • writeWarning

      public void writeWarning(String type, String id, String msgFormat, Object... params)
      Writes an warning trace log.
      Parameters:
      type - Type of log.
      id - Instance identifier.
      msgFormat - Message or message format (with type and id input as well).
      params - Params for the message.
    • writeError

      public void writeError(String type, String id, String msgFormat, Object... params)
      Writes an error trace log.
      Parameters:
      type - Type of log.
      id - Instance identifier.
      msgFormat - Message or message format (with type and id input as well).
      params - Params for the message.