Removed debug message

This commit is contained in:
Robert Osfield
2016-06-28 16:25:21 +01:00
parent dc3d4cac53
commit 55d6113375

View File

@@ -491,7 +491,7 @@ void osgDB::stringcopy(char* dest, const char* src, size_t length)
{
strncpy(dest, src, length-1);
dest[length-1] = '\0';
OSG_NOTICE<<"osgDB::stringcopy(["<<dest<<"], src=["<<src<<"], "<<length<<")"<<std::endl;
// OSG_NOTICE<<"osgDB::stringcopy(["<<dest<<"], src=["<<src<<"], "<<length<<")"<<std::endl;
}