// Author: Gockner, Simon // Created: 2020-02-12 // Copyright(c) 2020 SimonG. All Rights Reserved. using GBase.Logging.Interfaces; namespace GBase.Logging.Factories { /// /// Factory for the /// public interface IFileLoggerFactory { /// /// Creates an /// /// The directory of the LogFile /// The path of the LogFile /// A newly created instance of the implementation for IFileLogger Create(string filePath, string fileName); } }