aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs')
-rw-r--r--MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs8
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);
}
}