Revision 9984
Added by Jing Tao about 8 years ago
metacat-index/src/main/java/edu/ucsb/nceas/metacat/index/SystemMetadataEventListener.java | ||
---|---|---|
121 | 121 |
|
122 | 122 |
public void entryUpdated(EntryEvent<Identifier, IndexTask> entryEvent) { |
123 | 123 |
//System.out.println("===================================calling entryUpdated method "); |
124 |
log.info("===================================calling SystemMetadataEventListener.itemAdded method "); |
|
124 |
log.info("===================================SystemMetadataEventListener. entryUpdated - calling SystemMetadataEventListener.itemAdded method ");
|
|
125 | 125 |
// add to the index |
126 | 126 |
Identifier pid = entryEvent.getKey(); |
127 | 127 |
//System.out.println("===================================update the document "+pid.getValue()); |
128 |
log.info("===================================adding the document " + pid.getValue()); |
|
128 |
log.info("===================================SystemMetadataEventListener. entryUpdated - adding the document " + pid.getValue());
|
|
129 | 129 |
|
130 | 130 |
// what do we have to index? |
131 | 131 |
IndexTask task = entryEvent.getValue(); |
Also available in: Unified diff
Add more log information.