Changeset 10715 for OpenSceneGraph/trunk/src/osg/Notify.cpp
- Timestamp:
- 11/04/09 13:14:57 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osg/Notify.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osg/Notify.cpp
r10263 r10715 221 221 void osg::StandardNotifyHandler::notify(osg::NotifySeverity severity, const char *message) 222 222 { 223 #if 0 223 224 if (severity <= osg::WARN) 224 225 fputs(message, stderr); 225 226 else 226 227 fputs(message, stdout); 228 #else 229 fputs(message, stdout); 230 #endif 227 231 } 228 232
