Not sure if this is what is meant in the last few comments but being able to avoid this sort of code would be great:
Serial.print("x ");
Serial.print( );
Serial.print(" y ");
Serial.print(y);
Serial.print(" z ");
Serial.println(z);
Compared to:
Serial.println("x", x, "y", y, "z", z);