You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add optional parameter "method" in the Log.debug / info / warning / error to have following result in log:
flutter: [LoggerName.method] message
add method:
/// Log message at level [Level.CONFIG].
///
/// See [log] for information on how non-String [message] arguments are
/// handled.
void config(Object? message, [Object? error, StackTrace? stackTrace]) =>
Logger(_name).log(LogLevel.config, message, error, stackTrace);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: