summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-04-06 22:29:42 +0200
committerMartin Fischer <martin@push-f.com>2025-04-06 22:29:42 +0200
commit0a531bcbd4778ef754583d52d1a6b525ee9702d4 (patch)
tree0643e021f830daf253f9920ddcb5ebac8f7e7541
parente3ee41681800b396f3ecf1b0f6d1b378168c1a16 (diff)
fix(nix): systemd log field name must be uppercaseHEADmaster
-rw-r--r--service.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/service.nix b/service.nix
index 32af356..7e2fabc 100644
--- a/service.nix
+++ b/service.nix
@@ -45,7 +45,7 @@ in
ExecStart = "${osm_proposals}/bin/osm-proposals /var/lib/osm-proposals/proposals.json";
# Not using DynamicUser because then the StateDirectory becomes unreadable
# by other users, even when setting StateDirectoryMode for some reason.
- LogExtraFields = "log_format=logfmt";
+ LogExtraFields = "LOG_FORMAT=logfmt";
};
startAt = "hourly";
};