Yes. You can use tail on windows, which is a small price to gain access to many GNU tools on windows, as well as tail . Since its kit is with git for windows , it is pretty much tested and stable.
First install git-bash from https://gitforwindows.org/
Then put git-bash in the Windows path and reboot the workstation:
setx path "%path%;C:\Program Files\Git\bin\"
Now you can use tail -n 20 -F logging_file.log to tail any file and display the last 20 lines.
If you are running Linux / Unix and want to constantly look at the logs, you can use the following command: ssh username@10.15.3.3 'bash -c "tail -n 20 -F /c/Users/username/Desktop/logging_file.log"'
source share