java.lang.Object
com.azure.core.util.ExpandableStringEnum<LogLevel>
com.azure.resourcemanager.appcontainers.models.LogLevel

public final class LogLevel extends com.azure.core.util.ExpandableStringEnum<LogLevel>
Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final LogLevel
    Static value debug for LogLevel.
    static final LogLevel
    Static value error for LogLevel.
    static final LogLevel
    Static value info for LogLevel.
    static final LogLevel
    Static value warn for LogLevel.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static LogLevel
    Creates or finds a LogLevel from its string representation.
    Gets known LogLevel values.

    Methods inherited from class com.azure.core.util.ExpandableStringEnum

    equals, fromString, hashCode, toString, values

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • INFO

      public static final LogLevel INFO
      Static value info for LogLevel.
    • DEBUG

      public static final LogLevel DEBUG
      Static value debug for LogLevel.
    • WARN

      public static final LogLevel WARN
      Static value warn for LogLevel.
    • ERROR

      public static final LogLevel ERROR
      Static value error for LogLevel.
  • Constructor Details

    • LogLevel

      public LogLevel()
  • Method Details

    • fromString

      public static LogLevel fromString(String name)
      Creates or finds a LogLevel from its string representation.
      Parameters:
      name - a name to look for.
      Returns:
      the corresponding LogLevel.
    • values

      public static Collection<LogLevel> values()
      Gets known LogLevel values.
      Returns:
      known LogLevel values.