You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-11-29 23:07:45 +02:00
13 lines
564 B
Go
13 lines
564 B
Go
|
|
// Copyright The OpenTelemetry Authors
|
||
|
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
// Package stdoutlog provides an exporter for OpenTelemetry log
|
||
|
|
// telemetry.
|
||
|
|
//
|
||
|
|
// The exporter is intended to be used for testing and debugging, it is not
|
||
|
|
// meant for production use. Additionally, it does not provide an interchange
|
||
|
|
// format for OpenTelemetry that is supported with any stability or
|
||
|
|
// compatibility guarantees. If these are needed features, please use the OTLP
|
||
|
|
// exporter instead.
|
||
|
|
package stdoutlog // import "go.opentelemetry.io/otel/exporters/stdout/stdoutlog"
|