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