Skip to main content

fakecloud_persistence/
warn.rs

1/// Emit a one-shot warning that a given service does not yet honor
2/// `PersistenceConfig` and will continue to run purely in memory.
3pub fn warn_unsupported(service_name: &str) {
4    tracing::warn!(
5        service = service_name,
6        "persistence not yet supported, running in-memory"
7    );
8}