Enum EmbeddedSass.OutboundMessage.LogEvent.Type

    • Field Detail

      • 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:
        Constant Field Values
      • 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:
        Constant Field Values
      • DEBUG_VALUE

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