LogFilter enum

最近更新时间:2022-09-20 05:17:40

输出日志过滤分级。

Constants

  • Critical → const LogFilter

    仅输出 CRITICAL 级别的日志。

    @JsonValue(8)

    const LogFilter(5)

  • Debug → const LogFilter

    输出所有的 API 日志。如果你想获取最完整的日志,可以将日志级别设为该等级。

    @JsonValue(2063)

    const LogFilter(1)

  • Error → const LogFilter

    仅输出 CRITICAL、ERROR 级别的日志。

    @JsonValue(12)

    const LogFilter(4)

  • Info → const LogFilter

    输出 CRITICAL、ERROR、WARNING、INFO 级别的日志。我们推荐你将日志级别设为该等级。

    @JsonValue(15)

    const LogFilter(2)

  • Off → const LogFilter

    不输出任何日志。

    @JsonValue(0)

    const LogFilter(0)

  • values → const List<LogFilter>

    A constant List of the values in this enum, in order of their declaration.

    const List<LogFilter>

  • Warning → const LogFilter

    仅输出 CRITICAL、ERROR、WARNING 级别的日志。

    @JsonValue(14)

    const LogFilter(3)

Properties

  • hashCodeint

    The hash code for this object. [...]

    read-only, inherited

  • index → int

    The integer index of this enum.

    final

  • runtimeTypeType

    A representation of the runtime type of the object.

    read-only, inherited

Methods

Operators