mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-28 04:48:25 -06:00
30 lines
523 B
C#
30 lines
523 B
C#
namespace BasicNodes.Tests
|
|
{
|
|
using FileFlows.Plugin;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
internal class TestLogger : ILogger
|
|
{
|
|
public void DLog(params object[] args)
|
|
{
|
|
}
|
|
|
|
public void ELog(params object[] args)
|
|
{
|
|
}
|
|
|
|
public void ILog(params object[] args)
|
|
{
|
|
}
|
|
|
|
public void WLog(params object[] args)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|