aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-28 20:13:49 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-28 20:13:49 -0400
commit25cf269e2e793de5fefb9aa3f19fb167168e06c6 (patch)
treecd5f2f3c097a84a2483a70b57b3cbba7b6f4a6be /src/config
parente220f8462bbfb26e3237df34923be4acc5d83fee (diff)
downloadtanzanite-25cf269e2e793de5fefb9aa3f19fb167168e06c6.tar.gz
tanzanite-25cf269e2e793de5fefb9aa3f19fb167168e06c6.tar.bz2
tanzanite-25cf269e2e793de5fefb9aa3f19fb167168e06c6.zip
stuff
Diffstat (limited to 'src/config')
-rw-r--r--src/config/example-options.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
index f835321..ebd8c21 100644
--- a/src/config/example-options.ts
+++ b/src/config/example-options.ts
@@ -18,7 +18,6 @@ export const channels = {
dm: 'id here',
command: 'id here'
};
-export const verbose = false;
// Database specific
export const db = {
@@ -27,3 +26,9 @@ export const db = {
username: 'username here',
password: 'password here'
};
+
+// Logging
+export const logging: { info: boolean; verbose: boolean } = {
+ info: false,
+ verbose: true
+};