blob: d7403c6263435ff7bb31796a824f449817acb10f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package at.hannibal2.skyhanni.test
import at.hannibal2.skyhanni.SkyHanniMod
class CommandsSendToServerLogger {
companion object {
fun logCommandsToServer(command: String) {
if (SkyHanniMod.feature.dev.commandLogs) {
Exception("command send to server: '$command'").printStackTrace()
}
}
}
}
|