I have a JavaScript website deployed into an Azure Storage Account (Static Website) and I would like to log debug information (somewhere). For example, when a user logs in, I would like to track them around the site and print user input/responses.
Think of a Console.log("User exited shopping basket"), except instead of "Console." I want something more permanent in Azure. I have been looking at App Insights but to me this is more suited to tracking page loads and 404 errors etc; not the granularity that I need. Is there anyway I can call ApplicationInsights.log("User exited shopping basket") from JavaScript to use that existing framework?
Or alternatively, how does one log debug/trace information from a Static Website?