Script Running time log report
Hi,
Is there any possibilities to take the run time report for script running process. For instance I have to collect my script running time to close time as in log report.
by
hasvi
Hi,
Is there any possibilities to take the run time report for script running process. For instance I have to collect my script running time to close time as in log report.
by
hasvi
Hi,
Error showing "Illegal use of reserved word 'var'
on line "var minutes = Math.round(seconds/60);"
FYI:

by
hasvi
var start = new Date().getTime();
//Your scripts goes here.
var end = new Date().getTime();
var time = end - start;
var seconds = Math.round(time/1000);
var minutes = Math.round(seconds/60);
var hr = Math.round(minutes/60);
alert(hr + ":" + minutes + ":" + seconds);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.