diff options
| author | Your Name <you@example.com> | 2026-05-27 17:24:19 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-27 17:24:19 +0530 |
| commit | 319f44139bc668a4fa59d4c4361f442b3f87b95c (patch) | |
| tree | 38ce65c279f9aeb945a47e60e4af434d5adb3488 /src/main.rs | |
| parent | 9869113e1eb4ba76b6b85e09c72d6ec83620d8ae (diff) | |
Fix discovery: wait for relay connections, add per-npub logging, suppress relay pool spam
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 974898f..c7fa23a 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -36,7 +36,7 @@ async fn main() -> Result<()> { | |||
| 36 | tracing_subscriber::fmt() | 36 | tracing_subscriber::fmt() |
| 37 | .with_env_filter( | 37 | .with_env_filter( |
| 38 | tracing_subscriber::EnvFilter::try_from_default_env() | 38 | tracing_subscriber::EnvFilter::try_from_default_env() |
| 39 | .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("info")), | 39 | .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("info,nostr_relay_pool=warn")), |
| 40 | ) | 40 | ) |
| 41 | .init(); | 41 | .init(); |
| 42 | 42 | ||