forked from MeloNX/MeloNX
* 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; }
|
|
}
|
|
}
|