fix logging

This commit is contained in:
fjy 2014-08-21 13:40:55 -07:00
parent 12f4147df5
commit 197c80a694
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public class LoggingProgressIndicator extends BaseProgressIndicator
@Override
public void progressSection(String section, String message)
{
Stopwatch sectionWatch = sections.remove(section);
Stopwatch sectionWatch = sections.get(section);
if (sectionWatch == null) {
throw new ISE("[%s]: Cannot progress tracker for [%s]. Nothing started.", progressName, section);
}