From add047112025a13474e46a149b3d4a517dab5de7 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Mon, 2 Sep 2019 11:44:52 +0200 Subject: [PATCH] vfio: Use the log crate macros Instead of using the syslog vmm-sys-util ones. Signed-off-by: Samuel Ortiz --- vfio/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/vfio/src/lib.rs b/vfio/src/lib.rs index cfadc288f..c3a0b915c 100644 --- a/vfio/src/lib.rs +++ b/vfio/src/lib.rs @@ -9,6 +9,7 @@ extern crate byteorder; extern crate devices; extern crate kvm_bindings; extern crate kvm_ioctls; +#[macro_use] extern crate log; extern crate pci; extern crate vfio_bindings;