I'm relatively new to Azure and I just went through the tutorial on how to create a new Azure function, which is triggered when a new blob is created, and had this as the default code in it.
public static void Run(Stream myBlob, string name, TraceWriter log)
{
log.Info($"C# Blob trigger function Processed blob
Name:{name}
Size: {myBlob.Length} Bytes");
}
From what I can see on the tutorial, I should be able to see some information in the "logs" area below the code, but nothing shows up, I've been checking for a solution for a while now but can't seem to find anything useful.
Any help would be greatly appreciated.
question from:
https://stackoverflow.com/questions/44657584/azure-function-apps-logs-not-showing 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…