Added item name to error message (#2594)
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>pull/2598/head
parent
044aad891e
commit
f30beb5aeb
|
@ -372,7 +372,7 @@ public class ItemUIRegistryImpl implements ItemUIRegistry {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (ItemNotFoundException e) {
|
} catch (ItemNotFoundException e) {
|
||||||
logger.error("Cannot retrieve item for widget {}", w.eClass().getInstanceTypeName());
|
logger.error("Cannot retrieve item '{}' for widget {}", itemName, w.eClass().getInstanceTypeName());
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean considerTransform = false;
|
boolean considerTransform = false;
|
||||||
|
|
Loading…
Reference in New Issue