KrisB
Joined: 18 Aug 2017 Posts: 1
|
Posted: Fri Aug 18, 2017 10:58 am Post subject: Log file to include PID |
|
|
If I use logging in a profile, then open the profile both in VVEngine and in ViceVersa, the log will be difficult to interpret, as both processes will append to the same log. To make it more easy to read, one could use a column in the log line for PID. This would allow me to only show the lines from the process I'm interested in.
E.g. PowerShell:
Code: | Get-Content .\vice.log -Encoding Unicode -Wait | Select-String "1234" |
So the log text could be something like this:
Code: | 2017-08-18 12:44:12 1234 Profile Started. |
|
|