mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-28 15:32:16 +00:00
11 lines
245 B
C#
11 lines
245 B
C#
using log4net.Appender;
|
|
using log4net.Core;
|
|
using UnityEngine;
|
|
|
|
public class UnityDebugAppender : AppenderSkeleton
|
|
{
|
|
protected override void Append(LoggingEvent loggingEvent)
|
|
{
|
|
Debug.Log(RenderLoggingEvent(loggingEvent));
|
|
}
|
|
} |