// 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 ILogFactory
{
///
/// Creates an
///
/// A newly created instance of the implementation for
ILog Create();
}
}