aspnetcore/src/Microsoft.AspNetCore.NodeSe.../Util/INodeInstanceOutputLogger.cs

15 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.AspNetCore.NodeServices.Util
{
public interface INodeInstanceOutputLogger
{
void LogOutputData(string outputData);
void LogErrorData(string errorData);
}
}