Files
ReleaseUpdater/Updater/Core/ILogger.cs

13 lines
459 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Updater.Core;
/// <summary>Простая абстракция журналирования.</summary>
public interface ILogger
{
/// <summary>Информационное сообщение.</summary>
void Info(string message);
/// <summary>Предупреждающее сообщение.</summary>
void Warn(string message);
/// <summary>Сообщение об ошибке.</summary>
void Error(string message);
}