Skip to content

Commit

Permalink
change err to warn for missing render passes
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <ichen@openrobotics.org>
  • Loading branch information
iche033 committed Mar 23, 2023
1 parent 5445026 commit 44c4bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RenderPassSystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ RenderPassPtr RenderPassSystem::CreateImpl(const std::string &_type)
}
else
{
ignerr << "RenderPass of typeid '" << _type << "' is not registered"
<< std::endl;
ignwarn << "RenderPass of typeid '" << _type << "' is not registered"
<< std::endl;
}
return pass;
}
Expand Down

0 comments on commit 44c4bf2

Please sign in to comment.