mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-30 16:35:31 +00:00
vm-virtio: queue: Reduce logging level of EVENT_IDX logs
This logging is too spammy for info!() level and should be handled as debug!() level Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
f583aa9d30
commit
230e8a23a0
@ -707,7 +707,7 @@ impl Queue {
|
||||
|
||||
if let Some(old_idx) = self.signalled_used {
|
||||
if let Some(used_event) = self.get_used_event(&mem) {
|
||||
info!(
|
||||
debug!(
|
||||
"used_event = {:?} used_idx = {:?} old_idx = {:?}",
|
||||
used_event, used_idx, old_idx
|
||||
);
|
||||
@ -718,7 +718,7 @@ impl Queue {
|
||||
}
|
||||
|
||||
self.signalled_used = Some(used_idx);
|
||||
info!("Needs notification: {:?}", notify);
|
||||
debug!("Needs notification: {:?}", notify);
|
||||
notify
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user