Skip to content

Commit 5a45359

Browse files
authored
downgrade annoying log messages (#4977)
🫵 you are not info
1 parent 4555c2c commit 5a45359

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reflex/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ def get_compilation_time() -> str:
10631063
with stateful_pages_marker.open("r") as f:
10641064
stateful_pages = json.load(f)
10651065
for route in stateful_pages:
1066-
console.info(f"BE Evaluating stateful page: {route}")
1066+
console.debug(f"BE Evaluating stateful page: {route}")
10671067
self._compile_page(route, save_page=False)
10681068
self._enable_state()
10691069
self._add_optional_endpoints()

reflex/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def update_from_env(self) -> dict[str, Any]:
964964
env_var = "***"
965965

966966
if value != getattr(self, key):
967-
console.info(
967+
console.debug(
968968
f"Overriding config value {key} with env var {key.upper()}={env_var}",
969969
dedupe=True,
970970
)

0 commit comments

Comments
 (0)