Changed: Display string length in message (to debug empty strings)
--HG-- branch : develop
This commit is contained in:
parent
dcb3f2b149
commit
c5507b8728
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ void CRadialVertices::init (INode *node, Mesh *mesh, TimeValue time, Interface &
|
|||
{
|
||||
// Output error message
|
||||
char msg[512];
|
||||
smprintf (msg, 512, "Can't find pivot node named '%s'", pivotName.c_str());
|
||||
smprintf (msg, 512, "Can't find pivot node named '%s' of length %u", pivotName.c_str(), (uint)pivotName.length());
|
||||
nelExport.outputErrorMessage (msg);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue