Merge "GroupCacheImpl: Fix log message when UUID is not found" into stable-2.14

This commit is contained in:
Edwin Kempin
2018-05-22 06:28:59 +00:00
committed by Gerrit Code Review

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;
}
}