GroupCacheImpl: Fix log message when UUID is not found

Change-Id: Ia20c8bfdba6bbf6469acc770c4a415b89e0a14ed
This commit is contained in:
David Pursehouse
2018-05-21 12:45:53 +09:00
parent 8f708b8cc0
commit 3912a9d5ab

View File

@@ -144,7 +144,7 @@ public class GroupCacheImpl implements GroupCache {
try {
return byUUID.get(uuid.get()).orElse(null);
} catch (ExecutionException e) {
log.warn(String.format("Cannot lookup group %s by name", uuid.get()), e);
log.warn(String.format("Cannot lookup group %s by uuid", uuid.get()), e);
return null;
}
}