GroupCacheImpl: Fix log message when UUID is not found
Change-Id: Ia20c8bfdba6bbf6469acc770c4a415b89e0a14ed
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user