I'm relatively new to Azure, and I just looked at the tutorial on how to create a new Azure feature that starts when a new blob is created and has this as the default code.
public static void Run(Stream myBlob, string name, TraceWriter log)
{
log.Info($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
}
From what I see in the textbook, I should see some information in the "Logs" area under the code, but nothing is displayed, I have been checking the solution for some time, but I can, It seems, is something useful.
Any help would be greatly appreciated.
source
share