public static void ProcessedDesiredPropertyUpdatesSubscriptionRemovalRequest(TwinReceivingLinkHandler handler, string correlationId)
 {
     Log.LogDebug((int)EventIds.ProcessedDesiredPropertyUpdatesSubscriptionRemovalRequest, $"Processed removing Twin desired properties subscription for {handler.ClientId} on request {correlationId}");
 }
 public static void InvalidCorrelationId(TwinReceivingLinkHandler handler)
 {
     Log.LogWarning((int)EventIds.InvalidOperation, $"Cannot process message on link {handler.LinkUri} because no correlation ID was specified");
 }
 public static void ProcessedTwinReportedPropertiesUpdate(TwinReceivingLinkHandler handler)
 {
     Log.LogDebug((int)EventIds.ProcessedTwinReportedPropertiesUpdate, $"Processed Twin reported properties update for {handler.ClientId}");
 }
 public static void InvalidOperation(TwinReceivingLinkHandler handler, string operation)
 {
     Log.LogWarning((int)EventIds.InvalidOperation, $"Cannot process message on link {handler.LinkUri} because an invalid operation value '{operation}' was specified in message annotations");
 }
 public static void ProcessedTwinGetRequest(TwinReceivingLinkHandler handler)
 {
     Log.LogDebug((int)EventIds.ProcessedTwinGetRequest, $"Processed Twin get request for {handler.ClientId}");
 }