Interface ILogsApi
Allows to find logs happening on the remote server
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public interface ILogsApi : IInitializable
Methods
SearchLogsAsync(LogSearchParams, CancellationToken)
Returns logs found according to the parameters.
Declaration
Task<LogSearchResult> SearchLogsAsync(LogSearchParams searchParams, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
LogSearchParams | searchParams | The parameters to look for. |
CancellationToken | cancellationToken | The cancellation token. |
Returns
Type | Description |
---|---|
Task<LogSearchResult> | A Task representing the asynchronous operation. |