Catel.Logging.FileLogListener.Initialize C# (CSharp) Метод

Initialize() приватный Метод

private Initialize ( bool initFilePath, Assembly assembly = null ) : void
initFilePath bool
assembly Assembly
Результат void
        private void Initialize(bool initFilePath, Assembly assembly = null)
        {
           _assembly = assembly ?? AssemblyHelper.GetEntryAssembly() ?? Assembly.GetCallingAssembly();

            if (initFilePath && string.IsNullOrWhiteSpace(_filePath))
            {
                _filePath = DetermineFilePath(AutoLogFileName);
            }            
        }