Steps to Generate Application Eventlogs in Azure AppService Orchestrator

How to obtain the Eventlogs, when no Application Eventlogs are being written in Azure AppService Orchestrator?

  1. Please open 'Development Tools' - 'App Service Editor'
Development Tools  Clone App  Console  Advanced Tools  App Service Editor (Preview)  Extensions
  1. Edit UiPath.Orchestrator.dll.config
  2. Insert a file target before </target>
        <target name="azureLogFile" xsi:type="File" layout="${longdate} - ${level:uppercase=true} - ${logger} ${message} ${onexception:${exception:format=tostring:maxInnerExceptionLevel=10:innerFormat=tostring}}" fileName="D:/home/logfiles/${shortdate}-OrchestratorApplication.log" keepFileOpen="true" archiveEvery="Day" maxArchiveFiles="5" />
  1. Edit the following logger line.
Before
<logger name="*" minlevel="Info" writeTo="" />
After
<logger name="*" minlevel="Trace" writeTo="azureLogFile" />
  1. Replicate the issue.
  2. Open 'Development Tools' - 'Advanced Tools'
Development Tools  Clone App  Console  Advanced Tools  App Service Editor (Preview)  Extensions
  1. Click 'Go'
  2. Select 'Tools' - 'Diagnostic Dump'
TOOLS •  Diagnostic dump  WebJobs dash  Web nooks  Zip Push Deploy  Download de
 
Send the zip file and revert the setting modifications made at step 3 and 4 back.