All Downloads are FREE. Search and download functionalities are using the official Maven repository.

runtime.csharp.IRT.ILogger.cs Maven / Gradle / Ivy


using System;

namespace IRT {
    public enum LogLevel {
        Trace,
        Debug,
        Info,
        Warning,
        Error
    }

    public interface ILogger {
        void Logf(LogLevel level, string format, params object[] args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy