#New: 07.10.2020 S.Gueth

Code to add in NX Journal to measure costum Perf Times:

Dim lg As LogFile = theSession.LogFile
Dim PLMPerfSW As New System.Diagnostics.Stopwatch()
PLMPerfSW.Start()
...[code that should be measured in journal]...
PLMPerfSW.Stop()
lg.WriteLine("##PLMPerfTime: " + PLMPerfSW.Elapsed.TotalSeconds.ToString().Replace(",", ".") + " sec")




Result in NX-Syslog:

##PLMPerfTime: 2.6352835 sec

If this result is in the NX Syslog, the PLMPerf Parser will use this time as measurement result
