public void Analyze(string fileName)
 {
     if (fileName.Length < 8)
     {
         LoggingFacility.Log("Filename too short:" + fileName);
     }
     //rest of the method here
 }
 public bool IsConfigured(string configName)
 {
     LoggingFacility.Log("checking " + configName);
     return(true); //just fo demo
 }