private int logLevel; // ERROR = 1, WARN = 2, INFO = 3, DEBUG = 4 public MyLogger(BestIconFinder paramMyBestIf) { this.nbIndent = 0; indent = ""; this.myBestIf = paramMyBestIf; this.logLevel = 4; }
public MyLogger(BestIconFinder paramMyBestIf, int paramLogLevel) : this(paramMyBestIf) { logLevel = paramLogLevel; }
public IconChooser(BestIconFinder bif) { this.Bif = bif; this.ChoosenIndex = bif.IndexOfBestImage; }