aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs
blob: bb5770cbc899f89f142156daff09d27c61832f7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Sf;
using System;

namespace Ryujinx.Horizon.Sdk.Lm
{
    interface ILmLogger : IServiceObject
    {
        Result Log(Span<byte> message);
        Result SetDestination(LogDestination destination);
    }
}