public void LogErrorServiceMessage()

in src/Logging/Internal/EventSource/OmexLogEventSource.cs [15:129]


		public void LogErrorServiceMessage(
			string applicationName,
			string serviceName,
			string agentName,
			string buildVersion,
			string processName,
			Guid partitionId,
			long replicaId,
			string activityId,
			string activityTraceId,
			Guid correlationId,
			uint transactionId,
			string level,
			string category,
			string tagId,
			string tagName,
			int threadId,
			string message,
			bool isHealthCheck) =>
			WriteEvent((int)EventSourcesEventIds.LogError, applicationName, serviceName, agentName, buildVersion, processName, partitionId, replicaId,
				activityId, activityTraceId, correlationId, transactionId, level, category, tagId, tagName, threadId, message, isHealthCheck);

		[Event((int)EventSourcesEventIds.LogWarning, Level = EventLevel.Warning, Message = "{12}:{13} {16}", Version = 7)]
		public void LogWarningServiceMessage(
			string applicationName,
			string serviceName,
			string agentName,
			string buildVersion,
			string processName,
			Guid partitionId,
			long replicaId,
			string activityId,
			string activityTraceId,
			Guid correlationId,
			uint transactionId,
			string level,
			string category,
			string tagId,
			string tagName,
			int threadId,
			string message,
			bool isHealthCheck) =>
			WriteEvent((int)EventSourcesEventIds.LogWarning, applicationName, serviceName, agentName, buildVersion, processName, partitionId, replicaId,
				activityId, activityTraceId, correlationId, transactionId, level, category, tagId, tagName, threadId, message, isHealthCheck);

		[Event((int)EventSourcesEventIds.LogInfo, Level = EventLevel.Informational, Message = "{12}:{13} {16}", Version = 7)]
		public void LogInfoServiceMessage(
			string applicationName,
			string serviceName,
			string agentName,
			string buildVersion,
			string processName,
			Guid partitionId,
			long replicaId,
			string activityId,
			string activityTraceId,
			Guid correlationId,
			uint transactionId,
			string level,
			string category,
			string tagId,
			string tagName,
			int threadId,
			string message,
			bool isHealthCheck) =>
			WriteEvent((int)EventSourcesEventIds.LogInfo, applicationName, serviceName, agentName, buildVersion, processName, partitionId, replicaId,
				activityId, activityTraceId, correlationId, transactionId, level, category, tagId, tagName, threadId, message, isHealthCheck);

		[Event((int)EventSourcesEventIds.LogVerbose, Level = EventLevel.Verbose, Message = "{12}:{13} {16}", Version = 7)]
		public void LogVerboseServiceMessage(
			string applicationName,
			string serviceName,
			string agentName,
			string buildVersion,
			string processName,
			Guid partitionId,
			long replicaId,
			string activityId,
			string activityTraceId,
			Guid correlationId,
			uint transactionId,
			string level,
			string category,
			string tagId,
			string tagName,
			int threadId,
			string message,
			bool isHealthCheck) =>
			WriteEvent((int)EventSourcesEventIds.LogVerbose, applicationName, serviceName, agentName, buildVersion, processName, partitionId, replicaId,
				activityId, activityTraceId, correlationId, transactionId, level, category, tagId, tagName, threadId, message, isHealthCheck);

		[Event((int)EventSourcesEventIds.LogSpam, Level = EventLevel.Verbose, Message = "{12}:{13} {16}", Version = 7)]
		public void LogSpamServiceMessage(
			string applicationName,
			string serviceName,
			string agentName,
			string buildVersion,
			string processName,
			Guid partitionId,
			long replicaId,
			string activityId,
			string activityTraceId,
			Guid correlationId,
			uint transactionId,
			string level,
			string category,
			string tagId,
			string tagName,
			int threadId,
			string message,
			bool isHealthCheck) =>
			WriteEvent((int)EventSourcesEventIds.LogSpam, applicationName, serviceName, agentName, buildVersion, processName, partitionId, replicaId,
				activityId, activityTraceId, correlationId, transactionId, level, category, tagId, tagName, threadId, message, isHealthCheck);

		public static OmexLogEventSource Instance { get; } = new OmexLogEventSource();