mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
This commit is part of a series of similar commits. Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de> On-behalf-of: SAP philipp.schuster@sap.com
15 lines
280 B
Rust
15 lines
280 B
Rust
// Copyright © 2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#[cfg(not(feature = "tracing"))]
|
|
mod tracer_noop;
|
|
#[cfg(not(feature = "tracing"))]
|
|
pub use tracer_noop::*;
|
|
|
|
#[cfg(feature = "tracing")]
|
|
mod tracer;
|
|
#[cfg(feature = "tracing")]
|
|
pub use tracer::*;
|