Enum Class EmbeddedSass.LogEventType

java.lang.Object
java.lang.Enum<EmbeddedSass.LogEventType>
sass.embedded_protocol.EmbeddedSass.LogEventType
All Implemented Interfaces:
Internal.EnumLite, ProtocolMessageEnum, Serializable, Comparable<EmbeddedSass.LogEventType>, Constable
Enclosing class:
EmbeddedSass

public static enum EmbeddedSass.LogEventType extends Enum<EmbeddedSass.LogEventType> implements ProtocolMessageEnum
 The possible types of [LogEvent].
 
Protobuf enum sass.embedded_protocol.LogEventType
  • Enum Constant Details

    • WARNING

      public static final EmbeddedSass.LogEventType WARNING
       A warning for something other than a deprecated Sass feature. Often emitted
       due to a stylesheet using the `@warn` rule.
       
      WARNING = 0;
    • DEPRECATION_WARNING

      public static final EmbeddedSass.LogEventType DEPRECATION_WARNING
       A warning indicating that the stylesheet is using a deprecated Sass
       feature. Compilers should not add text like "deprecation warning" to
       deprecation warnings; it's up to the host to determine how to signal that
       to the user.
       
      DEPRECATION_WARNING = 1;
    • DEBUG

      public static final EmbeddedSass.LogEventType DEBUG
       A message generated by the user for their own debugging purposes.
       
      DEBUG = 2;
    • UNRECOGNIZED

      public static final EmbeddedSass.LogEventType UNRECOGNIZED
  • Field Details

    • WARNING_VALUE

      public static final int WARNING_VALUE
       A warning for something other than a deprecated Sass feature. Often emitted
       due to a stylesheet using the `@warn` rule.
       
      WARNING = 0;
      See Also:
    • DEPRECATION_WARNING_VALUE

      public static final int DEPRECATION_WARNING_VALUE
       A warning indicating that the stylesheet is using a deprecated Sass
       feature. Compilers should not add text like "deprecation warning" to
       deprecation warnings; it's up to the host to determine how to signal that
       to the user.
       
      DEPRECATION_WARNING = 1;
      See Also:
    • DEBUG_VALUE

      public static final int DEBUG_VALUE
       A message generated by the user for their own debugging purposes.
       
      DEBUG = 2;
      See Also:
  • Method Details