Index: /OpenSceneGraph/trunk/src/osgPlugins/obj/obj.cpp
===================================================================
--- /OpenSceneGraph/trunk/src/osgPlugins/obj/obj.cpp (revision 3323)
+++ /OpenSceneGraph/trunk/src/osgPlugins/obj/obj.cpp (revision 3324)
@@ -94,5 +94,5 @@
 bool Model::readMTL(std::istream& fin)
 {
-    osg::notify(osg::NOTICE)<<"Reading MTL file"<<std::endl;
+    osg::notify(osg::INFO)<<"Reading MTL file"<<std::endl;
 
     const int LINE_SIZE = 4096;
@@ -256,5 +256,5 @@
 bool Model::readOBJ(std::istream& fin)
 {
-    osg::notify(osg::NOTICE)<<"Reading OBJ file"<<std::endl;
+    osg::notify(osg::INFO)<<"Reading OBJ file"<<std::endl;
 
     const int LINE_SIZE = 4096;
@@ -306,4 +306,6 @@
                                                 (line[0]=='l') ? Element::POLYLINE :
                                                 Element::POLYGON );
+
+                // osg::notify(osg::NOTICE)<<"face"<<ptr<<std::endl;
 
                 int vi=0, ti=0, ni=0;
@@ -315,4 +317,5 @@
                     if (sscanf(ptr, "%d/%d/%d", &vi, &ti, &ni) == 3)
                     {
+                        // osg::notify(osg::NOTICE)<<"   vi="<<vi<<"/ti="<<ti<<"/ni="<<ni<<std::endl;
                         element->vertexIndices.push_back(remapVertexIndex(vi));
                         element->normalIndices.push_back(remapNormalIndex(ni));
@@ -321,4 +324,5 @@
                     else if (sscanf(ptr, "%d//%d", &vi, &ni) == 2)
                     {
+                        // osg::notify(osg::NOTICE)<<"   vi="<<vi<<"//ni="<<ni<<std::endl;
                         element->vertexIndices.push_back(remapVertexIndex(vi));
                         element->normalIndices.push_back(remapNormalIndex(ni));
@@ -326,4 +330,5 @@
                     else if (sscanf(ptr, "%d/%d", &vi, &ti) == 2)
                     {
+                        // osg::notify(osg::NOTICE)<<"   vi="<<vi<<"/ti="<<ti<<std::endl;
                         element->vertexIndices.push_back(remapVertexIndex(vi));
                         element->texCoordIndices.push_back(remapTexCoordIndex(ti));
@@ -331,4 +336,5 @@
                     else if (sscanf(ptr, "%d", &vi) == 1)
                     {
+                        // osg::notify(osg::NOTICE)<<"   vi="<<vi<<std::endl;
                         element->vertexIndices.push_back(remapVertexIndex(vi));
                     }
@@ -421,5 +427,5 @@
 
     }
-
+#if 0
     osg::notify(osg::NOTICE) <<"vertices :"<<vertices.size()<<std::endl;
     osg::notify(osg::NOTICE) <<"normals :"<<normals.size()<<std::endl;
@@ -427,5 +433,5 @@
     osg::notify(osg::NOTICE) <<"materials :"<<materialMap.size()<<std::endl;
     osg::notify(osg::NOTICE) <<"elementStates :"<<elementStateMap.size()<<std::endl;
-/*    
+    
     unsigned int pos=0;
     for(ElementStateMap::iterator itr=elementStateMap.begin();
@@ -443,5 +449,5 @@
         
     }
-*/
+#endif
     return true;
 }
