ILRepack/ILogger.cs (14 lines of code) (raw):
namespace ILRepacking
{
public interface ILogger
{
bool ShouldLogVerbose { get; set; }
void Log(object str);
void Error(string msg);
void Warn(string msg);
void Info(string msg);
void Verbose(string msg);
void DuplicateIgnored(string ignoredType, object ignoredObject);
}
}