fix debug log NPE

git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7@1100448 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Ellis 2011-05-07 04:58:29 +00:00
parent 0dc0029e82
commit 62cd28dfef
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ public class Table
if (bothDeleted || obsoleteRowTombstone || obsoleteColumn)
{
if (logger.isDebugEnabled())
logger.debug("skipping index update for obsolete mutation of " + cf.getComparator().getString(oldColumn.name()));
logger.debug("skipping index update for obsolete mutation of " + cf.getComparator().getString(name));
iter.remove();
oldIndexedColumns.remove(name);
}