diff options
| author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-28 21:54:50 -0600 |
|---|---|---|
| committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-28 21:54:50 -0600 |
| commit | 2456dab3db0d8eaae515606b83a6c0c317d009b0 (patch) | |
| tree | c20448112d43c1b4ffae1395584d9b202aeee3ed /src/config | |
| parent | 1e9e334097702c68d871365fc016aa096d03c491 (diff) | |
| parent | 5b5f0bf5667b922037508dfa88e40a1f8a2671ec (diff) | |
| download | tanzanite-2456dab3db0d8eaae515606b83a6c0c317d009b0.tar.gz tanzanite-2456dab3db0d8eaae515606b83a6c0c317d009b0.tar.bz2 tanzanite-2456dab3db0d8eaae515606b83a6c0c317d009b0.zip | |
fix conflicts
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/example-options.ts | 7 |
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 +}; |
