mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-29 09:00:50 -07:00
* Add print with stacktrace method * Adjust logging namespaces * Add static keyword to DynamicObjectFormatter
12 lines
203 B
C#
12 lines
203 B
C#
using System;
|
|
|
|
namespace Ryujinx.Common.Logging.Targets
|
|
{
|
|
public interface ILogTarget : IDisposable
|
|
{
|
|
void Log(object sender, LogEventArgs args);
|
|
|
|
string Name { get; }
|
|
}
|
|
}
|