getPlexLog method

Future<List<TautulliPlexLog>> getPlexLog({
  1. int? window,
  2. TautulliPlexLogType? logType,
})

Handler for get_plex_log.

Get the Plex Media Server/Plex Media Scanner logs.

Optional Parameters:

  • window: The number of tail lines to return
  • logType: The type of logs to fetch

Implementation

Future<List<TautulliPlexLog>> getPlexLog({
    int? window,
    TautulliPlexLogType? logType,
}) async => _commandGetPlexLog(_client, window: window, logType: logType);