Compare commits
3 Commits
7c00626a27
...
372e634103
Author | SHA1 | Date | |
---|---|---|---|
|
372e634103 | ||
55c5e54e0a | |||
f483b19b2d |
@ -33,7 +33,7 @@ dependencies {
|
|||||||
implementation("org.springframework.boot:spring-boot-starter-log4j2")
|
implementation("org.springframework.boot:spring-boot-starter-log4j2")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
|
||||||
implementation('org.springframework.boot:spring-boot-starter-actuator')
|
implementation('org.springframework.boot:spring-boot-starter-actuator')
|
||||||
implementation('io.micrometer:micrometer-registry-prometheus:1.10.6')
|
implementation('io.micrometer:micrometer-registry-prometheus:1.11.0')
|
||||||
|
|
||||||
implementation('org.springdoc:springdoc-openapi-ui:1.6.9')
|
implementation('org.springdoc:springdoc-openapi-ui:1.6.9')
|
||||||
implementation('org.springdoc:springdoc-openapi-security:1.6.9')
|
implementation('org.springdoc:springdoc-openapi-security:1.6.9')
|
||||||
|
@ -49,8 +49,7 @@ public class Init {
|
|||||||
|
|
||||||
logger.info("Connected on " + jda.getGuilds().size() + " Guilds:");
|
logger.info("Connected on " + jda.getGuilds().size() + " Guilds:");
|
||||||
for (Guild server : jda.getGuilds()) {
|
for (Guild server : jda.getGuilds()) {
|
||||||
server.loadMembers().get();
|
server.loadMembers();
|
||||||
logger.info("... " + server.getName() + " " + server.getMembers().size() + " Members");
|
|
||||||
}
|
}
|
||||||
return jda;
|
return jda;
|
||||||
} catch (LoginException | InterruptedException e) {
|
} catch (LoginException | InterruptedException e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user