File: ILogger.cs
Web Access
Project: src\src\VersionTools\Microsoft.DotNet.VersionTools.Cli\Microsoft.DotNet.VersionTools.Cli.csproj (Microsoft.DotNet.VersionTools.Cli)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.DotNet.VersionTools.Cli;
 
public interface ILogger
{
    void WriteMessage(string message, params object[] values);
 
    void WriteError(string message, params object[] values);
}