mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
16 lines
411 B
C#
16 lines
411 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
[Obsolete("Use Microsoft.Extensions.Logging.ILogger instead")]
|
|
public interface ILogger
|
|
{
|
|
void WriteVerbose(string msg);
|
|
void WriteInfo(string msg);
|
|
void WriteDebug(string msg);
|
|
void WriteWarning(string msg);
|
|
void WriteError(string msg);
|
|
void WriteAssert(bool condition, string msg);
|
|
}
|
|
}
|