Ejemplo n.º 1
0
 public PatchExecutionLogRecord(PatchExecutionEventType eventType, ISnPatch patch, string message = null)
 {
     EventType = eventType;
     Patch     = patch;
     Message   = message;
 }
Ejemplo n.º 2
0
 private void Log(ISnPatch patch, PatchExecutionEventType eventType)
 {
     _context.LogCallback?.Invoke(new PatchExecutionLogRecord(eventType, patch));
 }