File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/functions_framework/aio
tests/test_functions/execution_id Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def _configure_app_execution_id_logging():
172
172
"stream" : "ext://functions_framework.execution_id.logging_stream" ,
173
173
},
174
174
},
175
- "root" : {"level" : "INFO " , "handlers" : ["asgi" ]},
175
+ "root" : {"level" : "WARNING " , "handlers" : ["asgi" ]},
176
176
}
177
177
)
178
178
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def sync_function_in_async_context(request):
53
53
def sync_cloudevent_with_context (cloud_event ):
54
54
context = execution_id ._get_current_context ()
55
55
if context :
56
- logger .info (f"Execution ID in sync CloudEvent: { context .execution_id } " )
56
+ logger .warning (f"Execution ID in sync CloudEvent: { context .execution_id } " )
57
57
else :
58
58
logger .error ("No execution context in sync CloudEvent function!" )
59
59
You can’t perform that action at this time.
0 commit comments