/// <summary> /// Maintains singleton object /// </summary> /// <returns></returns> static public EtlLogger GetLogger() { if (logger == null) { logger = new EtlLogger(); } return logger; }
/// <summary> /// Maintains singleton object /// </summary> /// <returns></returns> static public EtlLogger GetLogger() { if (logger == null) { logger = new EtlLogger(); } return(logger); }