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