[Mobies-commit] [commit] r3721 - GReAT/trunk/Tools/MetaGME2UMX/MetaGME2UMX Interpreters
ksmyth at redhat1.isis.vanderbilt.edu
ksmyth at redhat1.isis.vanderbilt.edu
Mon May 2 17:04:49 CDT 2011
Author: ksmyth
Date: Mon May 2 17:04:49 2011
New Revision: 3721
Log:
Errors go to cerr
Modified:
GReAT/trunk/Tools/MetaGME2UMX/MetaGME2UMX Interpreters/UdmApp.cpp
Modified: GReAT/trunk/Tools/MetaGME2UMX/MetaGME2UMX Interpreters/UdmApp.cpp
==============================================================================
--- GReAT/trunk/Tools/MetaGME2UMX/MetaGME2UMX Interpreters/UdmApp.cpp Mon May 2 17:04:37 2011 (r3720)
+++ GReAT/trunk/Tools/MetaGME2UMX/MetaGME2UMX Interpreters/UdmApp.cpp Mon May 2 17:04:49 2011 (r3721)
@@ -209,7 +209,7 @@
{ AfxMessageBox(exc.what());
}
else
- { cout << exc.what();
+ { cerr << exc.what();
}
}
catch(_com_error ce)
@@ -217,7 +217,7 @@
{ AfxMessageBox(ce.Description());
}
else
- { cout << (char*)ce.Description();
+ { cerr << (char*)ce.Description();
}
}
More information about the Mobies-commit
mailing list