diff options
Diffstat (limited to 'src/nostr/builder.rs')
| -rw-r--r-- | src/nostr/builder.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nostr/builder.rs b/src/nostr/builder.rs index deee641..33f2fe5 100644 --- a/src/nostr/builder.rs +++ b/src/nostr/builder.rs | |||
| @@ -575,9 +575,10 @@ pub async fn create_relay( | |||
| 575 | 575 | ||
| 576 | if archive_config.enabled() { | 576 | if archive_config.enabled() { |
| 577 | tracing::info!( | 577 | tracing::info!( |
| 578 | "GRASP-05 archive mode enabled: archive_all={}, whitelist_entries={}", | 578 | "GRASP-05 archive mode enabled: archive_all={}, whitelist_entries={}, read_only={}", |
| 579 | archive_config.archive_all, | 579 | archive_config.archive_all, |
| 580 | archive_config.whitelist.len() | 580 | archive_config.whitelist.len(), |
| 581 | archive_config.read_only | ||
| 581 | ); | 582 | ); |
| 582 | } | 583 | } |
| 583 | 584 | ||