public LogBootstrapper NewLogBootstrapper(Assembly assembly, string assemblyName, string xmlCfgFPathFile)
        {
            LogBootstrapperImpl logBootstrapper = new LogBootstrapperImpl();

            logBootstrapper.CfgAssembly     = assembly;
            logBootstrapper.CfgAssemblyName = assemblyName;
            logBootstrapper.XmlCfgPathFile  = xmlCfgFPathFile;
            return(logBootstrapper);
        }
Exemple #2
0
        public LogBootstrapper NewLogBootstrapper()
        {
            LogBootstrapperImpl logBootstrapper = new LogBootstrapperImpl();

            return(logBootstrapper);
        }