Copyright The OpenTelemetry Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

package global

import (
	
	
	
	

	
)

globalErrorHandler provides an ErrorHandler that can be used throughout an OpenTelemetry instrumented project. When a user specified ErrorHandler is registered (`SetErrorHandler`) all calls to `Handle` and will be delegated to the registered ErrorHandler.
delegateErrorHandlerOnce ensures that a user provided ErrorHandler is only ever registered once.
Comiple time check that loggingErrorHandler implements ErrorHandler.
loggingErrorHandler logs all errors to STDERR.
setDelegate sets the ErrorHandler delegate if one is not already set.
Delegate already registered
		return
	}
	.delegate.Store()
}
Handle implements otel.ErrorHandler.
func ( *loggingErrorHandler) ( error) {
	if  := .delegate.Load();  != nil {
		.(otel.ErrorHandler).Handle()
		return
	}
	.l.Print()
}
ErrorHandler returns the global ErrorHandler instance. If no ErrorHandler instance has been set (`SetErrorHandler`), the default ErrorHandler which logs errors to STDERR is returned.
SetErrorHandler sets the global ErrorHandler to be h.
func ( otel.ErrorHandler) {
	delegateErrorHandlerOnce.Do(func() {
		 := ErrorHandler()
		if  ==  {
			return
		}
		if ,  := .(*loggingErrorHandler);  {
			.setDelegate()
		}
	})
}
Handle is a convience function for ErrorHandler().Handle(err)
func ( error) {
	ErrorHandler().Handle()