blob: 2f9a88067854e36b9becd56a1f0c0f6b195c89b7 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//go:build !tracing
// +build !tracing
package provider
import syslog "go.fuchsia.dev/fuchsia/src/lib/syslog/go"
const tag = "trace-provider"
func Create() error {
_ = syslog.InfoTf(tag, "tracing is disabled")
return nil
}