Adjust awkward logging message

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@798296 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2009-07-27 21:38:24 +00:00
parent 00c0f8cdac
commit 489a87af9c
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class SolrWriter {
public void deleteDoc(Object id) {
try {
log.info("deleted from document to Solr: " + id);
log.info("Deleting document: " + id);
DeleteUpdateCommand delCmd = new DeleteUpdateCommand();
delCmd.id = id.toString();
delCmd.fromPending = true;