11 lines
274 B
C#
11 lines
274 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MxGateway.Worker.Bootstrap;
|
|
|
|
public interface IWorkerLogger
|
|
{
|
|
void Information(string eventName, IReadOnlyDictionary<string, object?> fields);
|
|
|
|
void Error(string eventName, IReadOnlyDictionary<string, object?> fields);
|
|
}
|