Canon/Canon.Core/Abstractions/ICompilerLogger.cs

13 lines
277 B
C#
Raw Permalink Normal View History

using Microsoft.Extensions.Logging;
namespace Canon.Core.Abstractions;
public interface ICompilerLogger : ILogger
{
IDisposable ILogger.BeginScope<TState>(TState state) => default!;
bool ILogger.IsEnabled(LogLevel logLevel) => true;
public string Build();
}