runtime.csharp.IRT.ILogger.cs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
idealingua-v1-runtime-rpc-c-sharp
The newest version!
using System;
namespace IRT {
public enum LogLevel {
Trace,
Debug,
Info,
Warning,
Error
}
public interface ILogger {
void Logf(LogLevel level, string format, params object[] args);
}
}