aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2022-11-28 13:13:56 -0500
committerNathan Perry <np@nathanperry.dev>2022-11-28 13:13:56 -0500
commit14a9ad0c85b0ee6f190323a8903d1239b8968d22 (patch)
treef2747f9814ea12081f4850a8970e6d800ece3902 /src/main.rs
parent22cdf56ffccaefd0c9a4cb67cac87c7620d2d3f3 (diff)
nix: write nixos test configuration
- filter rust sources to avoid spurious rebuilds - fix accidental circular reference in nix flake - fix postgres startup scripts and behavior - thulani logger doesn't log to file by default
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index ffcd2f5..1bf3e98 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -59,7 +59,7 @@ const BACKOFF_INIT: f64 = 100.0;
const MIN_RUN_DURATION: Duration = Duration::from_secs(120);
fn main() {
- log_setup::init().expect("initializing logging");
+ log_setup::init(false).expect("initializing logging");
let mut backoff_count: usize = 0;