mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03:00
Add endpoint to log client events
This commit is contained in:
16
MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
Normal file
16
MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using MediaBrowser.Model.ClientLog;
|
||||
|
||||
namespace MediaBrowser.Controller.ClientEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// The client event logger.
|
||||
/// </summary>
|
||||
public interface IClientEventLogger
|
||||
{
|
||||
/// <summary>
|
||||
/// Logs the event from the client.
|
||||
/// </summary>
|
||||
/// <param name="clientLogEvent">The client log event.</param>
|
||||
void Log(ClientLogEvent clientLogEvent);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user