Merge to trunk. Fixing logging for PropertyGroupDaoJena and downgrading log message NIHVIVO-1006
This commit is contained in:
parent
3dadfff50b
commit
367b0c4bfc
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ import edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory;
|
||||||
|
|
||||||
public class PropertyGroupDaoJena extends JenaBaseDao implements PropertyGroupDao {
|
public class PropertyGroupDaoJena extends JenaBaseDao implements PropertyGroupDao {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(TabDaoJena.class.getName());
|
private static final Log log = LogFactory.getLog(PropertyGroupDaoJena.class.getName());
|
||||||
|
|
||||||
public PropertyGroupDaoJena(WebappDaoFactoryJena wadf) {
|
public PropertyGroupDaoJena(WebappDaoFactoryJena wadf) {
|
||||||
super(wadf);
|
super(wadf);
|
||||||
|
@ -240,7 +240,7 @@ public class PropertyGroupDaoJena extends JenaBaseDao implements PropertyGroupDa
|
||||||
try {
|
try {
|
||||||
group.setDisplayRank(Integer.decode(((Literal)(groupInd.getProperty(DISPLAY_RANK).getObject())).getString()).intValue());
|
group.setDisplayRank(Integer.decode(((Literal)(groupInd.getProperty(DISPLAY_RANK).getObject())).getString()).intValue());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error("error setting display rank in groupFromGroupIndividual() for "+groupInd.getURI());
|
log.debug("error setting display rank in groupFromGroupIndividual() for "+groupInd.getURI());
|
||||||
}
|
}
|
||||||
return group;
|
return group;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue