私は Python3.4 と Falcon1.0.0 を使用しており、apache2 を使用してファルコン アプリケーションを提供しています。ここで、falcon アプリケーションでログを維持したいと考えています。
質問する
5285 次
2 に答える
5
次の方法を使用できます。つまり、次の関数をファイル「logger.py」に保存します。
import logging
import logging.handlers
import os
from datetime import datetime
import sys
# Logging Levels
# https://docs.python.org/3/library/logging.html#logging-levels
# CRITICAL 50
# ERROR 40
# WARNING 30
# INFO 20
# DEBUG 10
# NOTSET 0
def set_up_logging():
file_path = sys.modules[__name__].__file__
project_path = os.path.dirname(os.path.dirname(os.path.dirname(file_path)))
log_location = project_path + '/logs/'
if not os.path.exists(log_location):
os.makedirs(log_location)
current_time = datetime.now()
current_date = current_time.strftime("%Y-%m-%d")
file_name = current_date + '.log'
file_location = log_location + file_name
with open(file_location, 'a+'):
pass
logger = logging.getLogger(__name__)
format = '[%(asctime)s] [%(levelname)s] [%(message)s] [--> %(pathname)s [%(process)d]:]'
# To store in file
logging.basicConfig(format=format, filemode='a+', filename=file_location, level=logging.DEBUG)
# To print only
# logging.basicConfig(format=format, level=logging.DEBUG)
return logger
したがって、何かを記録したいときはいつでも、この関数を呼び出して、記録したいものを記録してください。
これを例に取りましょう:
import falcon
import base64
import json
from logger import set_up_logging
logger = set_up_logging()
app = falcon.API()
app.add_route("/rec/", GetImage())
class GetImage:
def on_post(self, req, res):
json_data = json.loads(req.stream.read().decode('utf8'))
image_url = json_data['image_name']
base64encoded_image = json_data['image_data']
with open(image_url, "wb") as fh:
fh.write(base64.b64decode(base64encoded_image))
res.status = falcon.HTTP_203
res.body = json.dumps({'status': 1, 'message': 'success'})
logger.info("Image Server with image name : {}".format(image_name))
これがお役に立てば幸いです。
于 2017-01-16T13:33:47.800 に答える