chore(rust): log environment when updating feature flags (#9855)

It is useful to know, which environment we've updated the feature-flags
for.
This commit is contained in:
Thomas Eizinger
2025-07-13 19:27:10 +02:00
committed by GitHub
parent eb4c54620c
commit 70e4b6572f

View File

@@ -61,7 +61,7 @@ pub(crate) async fn evaluate_now(user_id: String, env: Env) {
scope.set_context("flags", sentry_flag_context(flags));
});
tracing::debug!(flags = ?FEATURE_FLAGS, "Evaluated feature-flags");
tracing::debug!(%env, flags = ?FEATURE_FLAGS, "Evaluated feature-flags");
}
pub(crate) fn reevaluate(user_id: String, env: &str) {