-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add backwards-compatible logging for GCF Python 3.7 (#107)
* Add backwards-compatible logging for GCF Python 3.7 * Reformatted * Update src/functions_framework/__init__.py Co-authored-by: Dustin Ingram <[email protected]> * Restructure logging to better fit legacy behavior * Modify write behavior to account for newlines * Update LogHandler to use io.TextIOWrapper * Simplify write method * Update src/functions_framework/__init__.py Co-authored-by: Dustin Ingram <[email protected]> Co-authored-by: Dustin Ingram <[email protected]>
- Loading branch information
Showing
4 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 2020 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Function used in Worker tests of legacy GCF Python 3.7 logging.""" | ||
import logging | ||
import os | ||
import sys | ||
|
||
X_GOOGLE_FUNCTION_NAME = "gcf-function" | ||
X_GOOGLE_ENTRY_POINT = "function" | ||
HOME = "/tmp" | ||
|
||
|
||
def function(request): | ||
"""Test function which logs to the appropriate output. | ||
Args: | ||
request: The HTTP request which triggered this function. Must contain name | ||
of the requested output in the 'mode' field in JSON document | ||
in request body. | ||
Returns: | ||
Value of the mode. | ||
""" | ||
name = request.get_json().get("mode") | ||
if name == "stdout": | ||
print("log") | ||
elif name == "stderr": | ||
print("log", file=sys.stderr) | ||
elif name == "loginfo": | ||
logging.info("log") | ||
elif name == "logwarn": | ||
logging.warning("log") | ||
elif name == "logerr": | ||
logging.error("log") | ||
elif name == "logcrit": | ||
logging.critical("log") | ||
return name |