for a multi-tenant app service, I would like to have a web server logging system stored in a storage container. I followed these steps and the logs are saved with the structure
ROOT_FOLDER_NAME_OF_WEB_APP/YEAR_FOLDER/MONTH_FOLDER/DAY_FOLDER/HOUR_FOLDER/random_file_name.log
Then I can write on this file with System.Diagnostics.Trace.TraceError("If you're seeing this, something bad happened");
Is there a way to manipulate the creation/usage of the Trace to achieve this structure? ROOT_FOLDER_NAME_OF_WEB_APP/TENANT_NAME/YEAR_FOLDER/MONTH_FOLDER/DAY_FOLDER/HOUR_FOLDER/filename_set_by_me.log
Thanks in advance