mirror of
https://github.com/golang/go
synced 2024-11-06 13:36:12 -07:00
814139985e
has no impact because there are no use cases that don't set it to true right now Change-Id: I2bc485226078c710bdc36397b96755cdce82d9cc Reviewed-on: https://go-review.googlesource.com/c/tools/+/212242 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package export
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
"golang.org/x/tools/internal/telemetry"
|
|
)
|
|
|
|
// LogWriter returns an observer that logs events to the supplied writer.
|
|
// If onlyErrors is true it does not log any event that did not have an
|
|
// associated error.
|
|
// It ignores all telemetry other than log events.
|
|
func LogWriter(w io.Writer, onlyErrors bool) Exporter {
|
|
return &logWriter{writer: w, onlyErrors: onlyErrors}
|
|
}
|
|
|
|
type logWriter struct {
|
|
writer io.Writer
|
|
onlyErrors bool
|
|
}
|
|
|
|
func (w *logWriter) StartSpan(context.Context, *telemetry.Span) {}
|
|
func (w *logWriter) FinishSpan(context.Context, *telemetry.Span) {}
|
|
func (w *logWriter) Log(ctx context.Context, event telemetry.Event) {
|
|
if w.onlyErrors && event.Error == nil {
|
|
return
|
|
}
|
|
fmt.Fprintf(w.writer, "%v\n", event)
|
|
}
|
|
func (w *logWriter) Metric(context.Context, telemetry.MetricData) {}
|
|
func (w *logWriter) Flush() {}
|