http://bugs.winehq.com/show_bug.cgi?id=812 Summary: Wine loader printing debug messages to stdout. Product: Wine Version: CVS Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: wine-loader AssignedTo: wine-bugs(a)winehq.com ReportedBy: dvos12(a)calvin.edu The wine loader is printing debug messages to stdout when they should go to stderr. For example in the file "wineloader.in", or "/usr/bin/wine", The message "Wine exited with a successful status" is printed to stdout. I have a non-interactive console application which takes input from stdin and writes to stdout. I need to capture the output of the program without any wine messages in the middle. One solution is to change the lines like: echo "Wine exited with a successful status" to: echo "Wine exited with a successful status" >&2 Or, you could add a --quiet command line option to wine. Or do both. David DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://bugs.winehq.com/show_bug.cgi?id=812>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.