NIHVIVO-1430 improve diagnostics
This commit is contained in:
parent
b39a76bfc5
commit
1f6d19fece
1 changed files with 3 additions and 0 deletions
|
@ -90,12 +90,15 @@ public class SelfEditingConfiguration {
|
||||||
public String getIndividualUriFromUsername(IndividualDao indDao,
|
public String getIndividualUriFromUsername(IndividualDao indDao,
|
||||||
String username) {
|
String username) {
|
||||||
if (indDao == null) {
|
if (indDao == null) {
|
||||||
|
log.warn("No IndividualDao");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (username == null) {
|
if (username == null) {
|
||||||
|
log.debug("username is null");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (selfEditingIdMatchingProperty == null) {
|
if (selfEditingIdMatchingProperty == null) {
|
||||||
|
log.debug("selfEditingMatchingProperty is null");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue