using System.Collections.Generic; namespace MxGateway.Worker.Bootstrap; public interface IWorkerLogger { void Information(string eventName, IReadOnlyDictionary fields); void Error(string eventName, IReadOnlyDictionary fields); }