RulesEngine/src/RulesEngine/RulesEngine/ILogger.cs

14 lines
233 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace RulesEngine
{
public interface ILogger
{
void LogTrace(string msg);
void LogError(Exception ex);
}
}