diff --git a/reflex/config.py b/reflex/config.py index 723d525a9..a79350935 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -238,9 +238,10 @@ class Config(Base): # If the env var is set, override the config value. if env_var is not None: - console.info( - f"Overriding config value {key} with env var {key.upper()}={env_var}" - ) + if key.upper() != "DB_URL": + console.info( + f"Overriding config value {key} with env var {key.upper()}={env_var}" + ) # Convert the env var to the expected type. try: