CellSetExplicit: reword warning message

ParaView ends up triggering this in its test suite and the "failure"
mention ends up triggering the "failed test" condition in its test
harness. Reword to read more like a warning than an error.
This commit is contained in:
Ben Boeckel 2021-11-01 12:32:06 -04:00
parent 42c89be5f3
commit 1ffc33adf2

@ -156,8 +156,8 @@ void BuildReverseConnectivity(
if (!visitPointsWithCells.ElementsValid)
{
VTKM_LOG_S(vtkm::cont::LogLevel::Warn,
"BuildReverseConnectivity failed for all known cell set types. "
"Attempting to copy connectivity arrays.");
"BuildReverseConnectivity attempted for all known cell set types; "
"falling back to copy connectivity arrays.");
vtkm::cont::ArrayHandle<vtkm::Id> connectionsCopy;
vtkm::cont::ArrayCopy(connections, connectionsCopy);
vtkm::cont::ArrayHandle<vtkm::Id> offsetsCopy;