diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-06 19:46:33 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-06 19:46:33 +0100 |
commit | 6bdc91b4bda1497e785af695769acae91e8e7064 (patch) | |
tree | 60dede243612d386ae4217e97979062e2b2a67b7 /src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt | |
parent | f7507f384459b57460af899bf9ceae4f52f1ea21 (diff) | |
download | LocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.tar.gz LocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.tar.bz2 LocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.zip |
feat: Add logging toggle to options
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt b/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt new file mode 100644 index 0000000..fd5ed3d --- /dev/null +++ b/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt @@ -0,0 +1,13 @@ +package moe.nea.ledger.config + +import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean +import io.github.notenoughupdates.moulconfig.annotations.ConfigOption + +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 = false +} |