Update dev mode warning message to match storage controller

Co-Authored-By: John Spray <john@neon.tech>
This commit is contained in:
Devin AI
2025-04-10 08:51:15 +00:00
parent d74c715602
commit 2574bbe072
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ fn main() -> anyhow::Result<()> {
This is insecure and should only be used in development environments.");
}
} else {
info!("Starting in dev mode - authentication security checks are disabled");
warn!("Starting in dev mode: this may be an insecure configuration.");
}
// Initialize logging.

View File

@@ -354,7 +354,7 @@ async fn main() -> anyhow::Result<()> {
This is insecure and should only be used in development environments.");
}
} else {
info!("Starting in dev mode - authentication security checks are disabled");
warn!("Starting in dev mode: this may be an insecure configuration.");
}
// Load JWT auth token to connect to other safekeepers for pull_timeline.