Add endpoint to log client events

This commit is contained in:
crobibero
2021-04-26 07:02:26 -06:00
parent 5df87b3e0d
commit 1d6224c9c6
9 changed files with 295 additions and 12 deletions

View 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);
}
}