From b62f8f2d5c9be926a12dbb5841d5374eb2713580 Mon Sep 17 00:00:00 2001 From: Naxdy Date: Wed, 3 Apr 2024 14:33:47 +0200 Subject: [PATCH] change(project): don't build with DEFMT_LOG in production --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d5def3a..c42caaa 100644 --- a/flake.nix +++ b/flake.nix @@ -78,7 +78,8 @@ "--target=${CARGO_BUILD_TARGET}" ]; - DEFMT_LOG = "warn"; + # if a tree falls in the forest and no one is around to hear it, does it make a sound? + DEFMT_LOG = "off"; }; devShells.default = pkgs.mkShell {