aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Logging/Formatters/ILogFormatter.cs')
-rw-r--r--Ryujinx.Common/Logging/Formatters/ILogFormatter.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs b/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
new file mode 100644
index 00000000..9a55bc6b
--- /dev/null
+++ b/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
@@ -0,0 +1,7 @@
+namespace Ryujinx.Common.Logging
+{
+ interface ILogFormatter
+ {
+ string Format(LogEventArgs args);
+ }
+}