aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-12-31 17:27:10 -0500
committerGitHub <noreply@github.com>2017-12-31 17:27:10 -0500
commit332d633ce32eb2d686a6342e39c0f7d4cb31edc0 (patch)
tree75690f1c3eb3df8f25fab066ce5783e8f3604d39 /core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt
parent7a9ca234c3245047ccda9597345a26884e9d3290 (diff)
downloadkau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.tar.gz
kau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.tar.bz2
kau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.zip
Misc (#122)3.6.1
* Update dependencies and use dexcount * Add should log extender * Allow null message * Add nullable eThro * Update changelog
Diffstat (limited to 'core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt')
-rw-r--r--core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt b/core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt
index 24146b0..f690571 100644
--- a/core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt
+++ b/core/src/main/kotlin/ca/allanwang/kau/logging/KL.kt
@@ -1,6 +1,8 @@
package ca.allanwang.kau.logging
+import ca.allanwang.kau.BuildConfig
+
/**
* Created by Allan Wang on 2017-06-19.
*/
-object KL : KauLogger("KAU") \ No newline at end of file
+object KL : KauLogger("KAU", { BuildConfig.DEBUG }) \ No newline at end of file