diff options
author | 2022-04-18 16:47:11 +0200 | |
---|---|---|
committer | 2022-04-18 16:47:11 +0200 | |
commit | 094f032f747b96733982108f2e184df88d9b25ae (patch) | |
tree | a36209e2ca052cae14a88c0a4adce61702766d90 /internal/config/defaults.go | |
parent | [documentation] add screenshots to docs (#459) (diff) | |
download | gotosocial-094f032f747b96733982108f2e184df88d9b25ae.tar.xz |
[feature] Add log-db-queries config option (#465)
Diffstat (limited to 'internal/config/defaults.go')
-rw-r--r-- | internal/config/defaults.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/config/defaults.go b/internal/config/defaults.go index e400f6599..847f10c81 100644 --- a/internal/config/defaults.go +++ b/internal/config/defaults.go @@ -24,6 +24,7 @@ import "github.com/coreos/go-oidc/v3/oidc" // Note that if you use this, you still need to set Host and, if desired, ConfigPath. var Defaults = Values{ LogLevel: "info", + LogDbQueries: false, ApplicationName: "gotosocial", ConfigPath: "", Host: "", |