Skip to content
Snippets Groups Projects
Commit d56246d9 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitri Naumov
Browse files

[MeL] VTK mesh conversion; Improve failure message

parent d8222614
No related branches found
No related tags found
No related merge requests found
......@@ -316,8 +316,10 @@ void VtkMeshConverter::convertArray(vtkDataArray& array,
return;
}
ERR("Array \"%s\" in VTU file uses unsupported data type.",
array.GetName());
WARN(
"Array '%s' in VTU file uses unsupported data type '%s'. The data "
"array will not be available.",
array.GetName(), array.GetDataTypeAsString());
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment