Log file name convention query

Currently, the log file name is being generated as per the Utc time, i.e. ‘YYYYHHSS’ currently I required that name of log file should be as per the local time

Hey there @youthful-zorse, while we would like to respond to every question raised here, the frequency and nature of your questions are far beyond what we at Kumo Corp can support without financial support from your organization.

You may continue to ask questions in the hope that someone from the broader community will help, but you should expect that Kumo Corp will not spend any time beyond a cursory glance to see if your questions are well-qualified and can be easily dealt with.

Changing the log file name format is not supported

Ah, if possible can you please do let me know the logic behind that?

It keeps the code simpler over all and easier to maintain. Also, avoiding timezone handling is a massive reduction in potential headaches.

ok got it thanks.

If you are using webhooks, it should not really be a problem. Even with local logs, it is easier to modify the filename after it is closed if that is important, but this may be somethingthat is better to handle in post processing anyway.

yes I need to work on some script to rename the log file name.

Right, so, if you need to handle the local logs, you may want to copy them to a new location, modify the name and then push them to your processing queue. Probaly something easily done with Python or PHP.

Sure thanks for the info.