A desktop UI does not have a logViewer, but you can view the log files of the cache directory under:
Windows - C:\\Users\\\\.wincc_oa-cache\\\\log>
or
Linux - /home//.wincc_oa-cache//log
The Linux shell command "tail -f" can be used to view the files continuously in your shell.
NOTE: The tail command can also be used under Windows, if you install the necessary Linux tools (e.g: Cygwin,...etc.)
To view the UI log you can do following:
1) open a command window and switch to the log directory of your cached project.
C:\\Users\\\\.wincc_oa-cache\\\\log>
2) run the following command:
tail -f *ui*.log
This will provide you with continuous logs of the UI in your command window.
how to view logs on desktopUI
Search
Re: how to view logs on desktopUI
"A desktop UI does not have a logViewer" ... well, it kind of has. But you need to show it from a script:
openLogViewer()
openLogViewer()
Re: how to view logs on desktopUI
Thank you Martin ... This is good to know!