Revision 10334
Added by Jing Tao over 7 years ago
src/edu/ucsb/nceas/metacat/dataone/D1NodeService.java | ||
---|---|---|
1209 | 1209 |
|
1210 | 1210 |
// do we own it? |
1211 | 1211 |
for (Subject s: subjects) { |
1212 |
logMetacat.debug("Comparing \t" + |
|
1212 |
logMetacat.debug("Comparing the rights holder in the system metadata\t" +
|
|
1213 | 1213 |
systemMetadata.getRightsHolder().getValue() + |
1214 |
" \tagainst \t" + s.getValue()); |
|
1214 |
" \tagainst one of the client's subject \t" + s.getValue());
|
|
1215 | 1215 |
//includedSubjects.append(s.getValue() + "; "); |
1216 | 1216 |
allowed = systemMetadata.getRightsHolder().equals(s); |
1217 | 1217 |
if (allowed) { |
Also available in: Unified diff
Make a debug statement clearer.