blob: 6b4e51c2030c63e9558deb6e9a235beb0b06913d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package moe.nea.ledger.config
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption
import moe.nea.ledger.DevUtil
class DebugOptions {
@ConfigOption(name = "Log entries to chat",
desc = "Appends all logged entries into the chat as they are logged. This option does not persist on restarts.")
@Transient
@ConfigEditorBoolean
@JvmField
var logEntries = DevUtil.isDevEnv
}
|