diff --git a/Filters/Core/vtkContour3DLinearGrid.cxx b/Filters/Core/vtkContour3DLinearGrid.cxx
index 10c0df210e143d840d5460f08206fcbfed736429..b0cd9c33b004e270ea1c0a1819347364667ffd4c 100644
--- a/Filters/Core/vtkContour3DLinearGrid.cxx
+++ b/Filters/Core/vtkContour3DLinearGrid.cxx
@@ -1766,14 +1766,14 @@ bool vtkContour3DLinearGrid::CanFullyProcessDataObject(
       : ug->GetPointData()->GetScalars();
     if (!array)
     {
-      vtkLog(INFO, "Scalar array is null");
+      vtkLog(TRACE, "Scalar array is null");
       return true;
     }
 
     int aType = array->GetDataType();
     if (aType != VTK_UNSIGNED_INT && aType != VTK_INT && aType != VTK_FLOAT && aType != VTK_DOUBLE)
     {
-      vtkLog(INFO, "Invalid scalar array type");
+      vtkLog(TRACE, "Invalid scalar array type");
       return false;
     }