mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
remove debug messages, woops
This commit is contained in:
parent
696cd235fd
commit
59fd337e44
@ -135,8 +135,6 @@ public class LuckPermsUserSubject extends LuckPermsSubject {
|
||||
@Override
|
||||
public Optional<String> getOption(ContextSet contexts, String s) {
|
||||
try (Timing ignored = service.getPlugin().getTimings().time(LPTiming.USER_GET_OPTION)) {
|
||||
service.getPlugin().getLog().warn("#getOption: " + contexts + " - " + s);
|
||||
|
||||
if (hasData()) {
|
||||
MetaData data = user.getUserData().getMetaData(service.calculateContexts(contexts));
|
||||
if (s.equalsIgnoreCase("prefix")) {
|
||||
@ -151,7 +149,6 @@ public class LuckPermsUserSubject extends LuckPermsSubject {
|
||||
}
|
||||
}
|
||||
|
||||
service.getPlugin().getLog().info(data.getMeta().toString());
|
||||
if (data.getMeta().containsKey(s)) {
|
||||
return Optional.of(data.getMeta().get(s));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user