A colleague asked me where he could find the logs of Azure WebJobs he configured inside an Azure Website.
For every Azure Website you create a Kudu dashboard exist. To get to this website browse to https://{site name}.scm.azurewebsites.net (in other words, add .scm in front of your Azure website name).
Click on the Debug console menu item and choose the CMD option. The Kudu Remote Execution Console is loaded.
You can now browse to the correct log location either by using the command line or by clicking through the folders at the top. Log files for the Azure Webjobs can be found under d:\home\data\jobs
More information about Azure Website logging can be found at: