summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorLibravatar Daenney <daenney@users.noreply.github.com>2023-08-21 20:07:55 +0200
committerLibravatar GitHub <noreply@github.com>2023-08-21 19:07:55 +0100
commit4ae16bce8c6aa8e3d96ca69015d2065badee3994 (patch)
treeebced804b50c4905e133d606b6416e0fce7b9f72 /example
parent[performance] Tweak media attachment cleanup; replace stale index (#2143) (diff)
downloadgotosocial-4ae16bce8c6aa8e3d96ca69015d2065badee3994.tar.xz
[feature] Make log format configurable (#2130)
* [feature] Don't emit timestamp in log lines When running gotosocial with a service manager like systemd, or a container runtime, the associated log driver usually emits timestamps itself. In those cases, having the extra timestamp from our own log lines ends up being a bit noisy and when centrally ingesting logs is duplicate information. This introduces a configuration flag that allows disabling emitting the timestamp. It's only wired up for "daemonised" processes, meaning server and testrig. * [chore] Add docs for log-timestamp * [feature] Simplify timestamp handling Co-Authored-By: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> * [chore] Less escaped double-quotes * [chore] Fix help string --------- Co-authored-by: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>
Diffstat (limited to 'example')
-rw-r--r--example/config.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/example/config.yaml b/example/config.yaml
index d3a6102bd..bc8e3d7c1 100644
--- a/example/config.yaml
+++ b/example/config.yaml
@@ -35,6 +35,17 @@ log-db-queries: false
# Default: true
log-client-ip: true
+# String. Format to use for the timestamp in log lines.
+# If set to the empty string, the timestamp will be
+# ommitted from the logs entirely.
+#
+# The format must be compatible with Go's time.Layout, as
+# documented on https://pkg.go.dev/time#pkg-constants.
+#
+# Examples: [true, false]
+# Default: "02/01/2006 15:04:05.000"
+log-timestamp-format: "02/01/2006 15:04:05.000"
+
# String. Application name to use internally.
# Examples: ["My Application","gotosocial"]
# Default: "gotosocial"