using System.Collections.Generic;
namespace ZB.MOM.WW.MxGateway.Worker.Bootstrap;
public interface IWorkerLogger
{
///
/// Logs an informational event with fields.
///
/// Event name.
/// Event fields.
void Information(string eventName, IReadOnlyDictionary fields);
///
/// Logs an error event with fields.
///
/// Event name.
/// Event fields.
void Error(string eventName, IReadOnlyDictionary fields);
}