How to print NMEA data to serial monitor only

Solution found:

void loop()
{
while(!(ss.available())){}
Serial.write(ss.read());
}

ss is the SoftwareSerial.