Be more verbose

This commit is contained in:
Victor Shcherb 2014-12-07 20:21:42 +01:00
parent a324188066
commit a5431d2036

View file

@ -154,9 +154,9 @@ public class RenderingRuleProperty {
}
return (int) Float.parseFloat(value);
} catch (NumberFormatException e) {
log.error("Rendering parse " + value);
log.error("Rendering parse " + value + " in " + attrName);
}
return -1;
return -1;
} else if(type == BOOLEAN_TYPE){
return Boolean.parseBoolean(value) ? TRUE_VALUE : FALSE_VALUE;
} else if(type == STRING_TYPE){