Skip to content

Commit b0b34ad

Browse files
committed
fix: set default log level for asgi logger to WARNING to match default python behavior.
1 parent 1123eea commit b0b34ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions_framework/aio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _configure_app_execution_id_logging():
172172
"stream": "ext://functions_framework.execution_id.logging_stream",
173173
},
174174
},
175-
"root": {"level": "INFO", "handlers": ["asgi"]},
175+
"root": {"level": "WARNING", "handlers": ["asgi"]},
176176
}
177177
)
178178

0 commit comments

Comments
 (0)