Fix log message formatting in change indexer

Change-Id: Icd806f0a349f52c7505971eeabc6bf2c4071d9f4
This commit is contained in:
David Pursehouse
2014-01-15 15:10:39 +09:00
parent 5c513089d2
commit 04c0a46e92

View File

@@ -244,7 +244,7 @@ public class ChangeIndexer {
}
}
} catch (Exception e) {
log.error(String.format("Failed to index change %d", id), e);
log.error(String.format("Failed to index change %d", id.get()), e);
throw e;
}
}