Hello!
I'm try to redirect using > without success.
Command line is:
py c:\dezoomify\dezoomify.py d:\links.txt d:\pic\ -b -l -vv > output.log
May you can add a parameter for duplicate output in log file?
Best regards
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Dezoomify prints its output to the stderr stream instead of stdout, which is why "> output.log" is having no effect here. You can fix this by doing "2> output.log" instead. See http://support.microsoft.com/kb/110930 .
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello!
I'm try to redirect using > without success.
Command line is:
py c:\dezoomify\dezoomify.py d:\links.txt d:\pic\ -b -l -vv > output.log
May you can add a parameter for duplicate output in log file?
Best regards
Hi!
Dezoomify prints its output to the stderr stream instead of stdout, which is why "> output.log" is having no effect here. You can fix this by doing "2> output.log" instead. See http://support.microsoft.com/kb/110930 .