Linefeeds in DebugFeature

This commit is contained in:
kageru 2019-07-17 22:52:47 +02:00
parent d6320bb5de
commit 31c5cd7135
Signed by: kageru
GPG Key ID: 8282A2BEA4ADA3D2

View File

@ -21,15 +21,11 @@ class DebugFeature : MessageFeature() {
val osBean = ManagementFactory.getPlatformMXBean(OperatingSystemMXBean::class.java)
val runtime = Runtime.getRuntime()
return MessageUtil.listToEmbed(
listOf(
"Bot:",
getBotStats(),
"Memory:",
getMemoryInfo(runtime, osBean),
"CPU:",
getCpuInfo(osBean),
"System:",
getOsInfo()
listOf(
"Bot:", getBotStats(),
"Memory:", getMemoryInfo(runtime, osBean),
"CPU:", getCpuInfo(osBean),
"System:", getOsInfo()
)
)
}