Community Center | Wird nicht überwacht
Dieses Tag wird nicht von Microsoft überwacht.
Dieser Browser wird nicht mehr unterstützt.
Führen Sie ein Upgrade auf Microsoft Edge durch, um die neuesten Features, Sicherheitsupdates und den technischen Support zu nutzen.
We have a small Python Azure Function like this :
import azure.functions as func
import logging
import zsbiconfig
app = func.FunctionApp()
@app.timer_trigger(schedule="0 */1 * * * *", arg_name="myTimer", run_on_startup=False,
use_monitor=False)
def zsdbi(myTimer: func.TimerRequest) -> None:
if myTimer.past_due:
logging.info('The timer is past due!')
logging.info('21 Python timer trigger function executed.')
return
If during load a Exception is thrown eg. import zsbiconfig not found I do not find this Information in the azure Portal or elsewhere. We do see however the logging calls in the LogStream but no Exception.
Dieses Tag wird nicht von Microsoft überwacht.