我希望能够在相关引擎日志中记录我传递给引擎的函数的输出。
IE:
data = /* my list of data to operate on */
def fn(inval):
import logging
log = logging.getLogger()
log.error('This is on the engine')
// do stuff
return result
calculated_data = []
for datum in data:
calc = view.apply(fn, datum)
calculated_data.append(calc)
我希望能够在执行特定任务的相关引擎日志中看到日志语句。