Files
Ryujinx/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
TSRBerry f4539c49d8 [Logger] Add print with stacktrace method (#5129)
* Add print with stacktrace method

* Adjust logging namespaces

* Add static keyword to DynamicObjectFormatter
2023-06-01 13:47:53 +00:00

7 lines
132 B
C#

namespace Ryujinx.Common.Logging.Formatters
{
interface ILogFormatter
{
string Format(LogEventArgs args);
}
}