Skip to content

Commit

Permalink
remove debug print to std::cout
Browse files Browse the repository at this point in the history
  • Loading branch information
syoyo committed Jun 3, 2024
1 parent a2bd8a8 commit 1b86a4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tydra/scene-access.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ bool TraverseRec(const std::string &path_prefix, const tinyusdz::Prim &prim,

if (prim.is<T>()) {
if (const T *pv = prim.as<T>()) {
std::cout << "Path : <" << prim_abs_path << "> is "
<< tinyusdz::value::TypeTraits<T>::type_name() << ".\n";
DCOUT("Path : <" << prim_abs_path << "> is " << tinyusdz::value::TypeTraits<T>::type_name());
itemmap[prim_abs_path] = pv;
}
}
Expand Down

0 comments on commit 1b86a4c

Please sign in to comment.