File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/api/command Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,11 +227,11 @@ private boolean isACloudStackUser(String username) {
227
227
if (CollectionUtils .isNotEmpty (cloudstackUsers )) {
228
228
for (final UserResponse cloudstackUser : cloudstackUsers ) {
229
229
if (username .equals (cloudstackUser .getUsername ())) {
230
- logger .trace ("found user {} in cloudstack user {}" , username , () -> cloudstackUser .getUsername ());
230
+ logger .trace ("found user {} in cloudstack user {}" , username , cloudstackUser .getUsername ());
231
231
rc = true ;
232
232
break ;
233
233
} else {
234
- logger .trace ("ldap user {} does not match cloudstack user {}" , username , () -> cloudstackUser .getUsername ());
234
+ logger .trace ("ldap user {} does not match cloudstack user {}" , username , cloudstackUser .getUsername ());
235
235
}
236
236
}
237
237
}
You can’t perform that action at this time.
0 commit comments