When printing warnings, label the warnings as coming from virtio_wl

This commit is contained in:
Bruce Leidl 2019-09-20 16:04:35 -04:00
parent 626b6583db
commit f71e3adb79

View File

@ -109,7 +109,7 @@ impl WaylandDevice {
let events = match poll.wait() { let events = match poll.wait() {
Ok(v) => v, Ok(v) => v,
Err(e) => { Err(e) => {
warn!("error waiting for poll events: {}", e); warn!("virtio_wl: error waiting for poll events: {}", e);
break; break;
} }
}; };
@ -137,7 +137,7 @@ impl WaylandDevice {
}, },
Self::KILL_TOKEN => break 'poll, Self::KILL_TOKEN => break 'poll,
Self::VFDS_TOKEN => self.vfd_manager.process_poll_events(), Self::VFDS_TOKEN => self.vfd_manager.process_poll_events(),
_ => warn!("unexpected poll token value"), _ => warn!("virtio_wl: unexpected poll token value"),
} }
}; };
} }
@ -246,7 +246,7 @@ impl <'a> MessageHandler<'a> {
let vfd = match self.device.get_vfd(vfd_id) { let vfd = match self.device.get_vfd(vfd_id) {
Some(vfd) => vfd, Some(vfd) => vfd,
None => { None => {
warn!("Received unexpected vfd id 0x{:08x}", vfd_id); warn!("virtio_wl: Received unexpected vfd id 0x{:08x}", vfd_id);
return Ok(None); return Ok(None);
} }
}; };