This can come in handy when troubleshooting: using System; using System.Diagnostics; using System.Text; namespace Thinktecture.Azure { class Program { static EventLog _eventLog = new EventLog(“Application”, “.”, “StartupTaskShell”); static StringBuilder _out = new StringBuilder(64); static StringBuilder _err = new StringBuilder(64); … Continue reading
