本文整理匯總了Python中app.Application.init_logger方法的典型用法代碼示例。如果您正苦於以下問題:Python Application.init_logger方法的具體用法?Python Application.init_logger怎麽用?Python Application.init_logger使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app.Application
的用法示例。
在下文中一共展示了Application.init_logger方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Session
# 需要導入模塊: from app import Application [as 別名]
# 或者: from app.Application import init_logger [as 別名]
"""
Propose: Describe application url
Author: 'yac'
Date:
"""
from app import Application
from _session import Session
session = Session()
app_ = Application()
session.expire_after = int(app_.conf['global']['session_expired_after'])
log = app_.init_logger('APP')
@app_.route('/host/<host_key>')
def host_cotroller(host_key, **params):
try:
if host_key == 'modules':
return {"result": {"local_host": True, "net_policy_server": True}, "success": True}
return {'host': 'ok', 'host_key': session.session}
except StandardError:
log.exception('Error in host_cotroller')
return {'success': False, 'errorMessage': 'server_error'}
@app_.route('/netpolicy/<netpolicy_key>')