We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba043c commit 51362fbCopy full SHA for 51362fb
src/firebase_functions/private/util.py
@@ -133,7 +133,7 @@ def _on_call_valid_body(request: _Request) -> bool:
133
def _on_call_valid_method(request: _Request) -> bool:
134
"""Make sure it's a POST."""
135
if request.method != "POST":
136
- _logging.warning("Request has invalid method.", request.method)
+ _logging.warning("Request has invalid method. %s", request.method)
137
return False
138
return True
139
0 commit comments