mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-15 18:52:54 +00: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; }
|
|
}
|
|
}
|