Regarding your reply, I conclude this is a new feature of TC11. The start/reset always log a warning.
My objective was to write the execution time of each of our scnenarios (both keywords and scripts) by doing the following:
GeneralEvents_OnStartTest
aqPerformance.Start('DefaultCounter')
GeneralEvents_OnStopTest
Log.Message(aqPerformance.Value); (Eventually, write this result in a seperate file for further comparison)
Because of the warning message on "reset", all of my 550 test items end up in warning instead of success.
I am using an other method to achieve my objective using the a project variable.
GeneralEvents_OnStartTest
project.Variables.MyStartTime := aqDateTime.Time ;
GeneralEvents_OnStopTest
aqConvert.TimeIntervalToStr(aqDateTime.TimeInterval(Project.Variables.MyStartTime,aqDateTime.Time ))