Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
---
rust/qemu-api/src/log.rs | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/rust/qemu-api/src/log.rs b/rust/qemu-api/src/log.rs
index a441b8c1f2e61b6aba95a3679ca9c426ab890c19..750ff4b4d878fabeac0bc2b28d291db4b824c760 100644
--- a/rust/qemu-api/src/log.rs
+++ b/rust/qemu-api/src/log.rs
@@ -23,6 +23,10 @@ pub enum Log {
/// Log guest access of unimplemented functionality.
/// Corresponds to `LOG_UNIMP` in the C implementation.
Unimp = bindings::LOG_UNIMP,
+
+ /// Log trace item.
+ /// Corresponds to `LOG_TRACE` in the C implementation.
+ Trace = bindings::LOG_TRACE,
}
/// A RAII guard for QEMU's logging infrastructure. Creating the guard
--
2.47.2