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