diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-05 10:40:45 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-11-05 12:57:24 -0600 |
| commit | 17264a6020774ac50b48bf5fe61ca9a3b1ec4d19 (patch) | |
| tree | 13a943670ac6ffe46496d9b17ff46775e75f5fef /MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs | |
| parent | 3398f7f953864c47d66b49287fcc2b613b0c03de (diff) | |
Use client info from claims
Diffstat (limited to 'MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs')
| -rw-r--r-- | MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs b/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs index 6fc54faf2..34968d493 100644 --- a/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs +++ b/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs @@ -19,9 +19,13 @@ namespace MediaBrowser.Controller.ClientEvent /// <summary> /// Writes a file to the log directory. /// </summary> - /// <param name="authorizationInfo">The current authorization info.</param> + /// <param name="clientName">The client name writing the document.</param> + /// <param name="clientVersion">The client version writing the document.</param> /// <param name="fileContents">The file contents to write.</param> /// <returns>The created file name.</returns> - Task<string> WriteDocumentAsync(AuthorizationInfo authorizationInfo, Stream fileContents); + Task<string> WriteDocumentAsync( + string clientName, + string clientVersion, + Stream fileContents); } } |
