| Summary: | Standard error output (stderr, cerr) doesn't output anything | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | yurivolo |
| Component: | cdt-debug | Assignee: | cdt-debug-inbox <cdt-debug-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | Ken Ryall <ken.ryall> |
| Severity: | major | ||
| Priority: | P3 | CC: | cdtdoug, marc.khouzam, pawel.1.piech |
| Version: | 8.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
*** This bug has been marked as a duplicate of bug 327617 *** |
Build Identifier: M20110210-1200 In debug mode standard error stream doesn't output anything to "Console" window. If you will run the executable from windows console all output is ok. It's very annoying bug, I can't see output from my logging system in the project. Reproducible: Always Steps to Reproduce: Code to reproduce: #include <iostream> using namespace std; int main() { cerr << "!!!Hello World!!!" << endl; // prints !!!Hello World!!! return 0; }