mirror of
https://github.com/htrefil/rkvm.git
synced 2024-11-16 07:47:24 +01:00
Improve min, max nonsense log message
This commit is contained in:
parent
607e1fb14c
commit
5352e715b6
1 changed files with 4 additions and 4 deletions
|
@ -213,10 +213,10 @@ impl Interceptor {
|
|||
|
||||
if (min != 0 || max != 0) && max < min {
|
||||
tracing::warn!(
|
||||
"Detected nonsense min ({}) and max ({}) values for absolute axis {}, disabling it",
|
||||
min,
|
||||
max,
|
||||
i
|
||||
min = %min,
|
||||
max = max,
|
||||
axis = i,
|
||||
"Detected nonsense min and max values for absolute axis, disabling it",
|
||||
);
|
||||
|
||||
let ret =
|
||||
|
|
Loading…
Reference in a new issue