LoggerCallback typedef

LoggerCallback = void Function(LogLevel level, String message, bool containsPii)

A callback for an MSAL log message.

  • level - Specifies the severity of the message.
  • containsPii - Specifies whether the message contents contain Personal Identifiable Information (PII).

Implementation

typedef LoggerCallback = void Function(
    LogLevel level, String message, bool containsPii);