aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
blob: 9a55bc6b0dc1d9dabef98091fd8c7dcec995d041 (plain) (blame)
1
2
3
4
5
6
7
namespace Ryujinx.Common.Logging
{
    interface ILogFormatter
    {
        string Format(LogEventArgs args);
    }
}