Add Timestamp in the Log Activities

Once I click “Log Activity”

logs are written but too much summarized. Can I customize which information to view in the output panel such as adding timestamp.

you can use log Message activity

No way without using the activity? I’d like to use the base ribbon menu if possible.

image


Mukesh

From the starting if the process you can create and declare the start time
For example : dtStartTime= DateTime.Now()

At end of your process create and declare the ending time so the difference between those two dates is your Process time taken period.

DateTime dt = DateTime.Now
DateTime dt2 = DateTime.Now
TimeSpan ts = (dt2 - dt)
Strtimetaken=ts.ToString("hh:mm:ss")

I tried this and get the same time for start and end, looking in the log the end doesn’t match with the logged time stamp??