src/main/java/com/google/cloud/spanner/pgadapter/wireoutput/ParameterStatusResponse.java [66:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  protected String getPayloadString() {
    return new MessageFormat("Length: {0}, " + "Parameter Key: {1}, " + "Parameter Value: {2}")
        .format(
            new Object[] {
              this.length,
              new String(this.parameterKey, UTF8),
              new String(this.parameterValue, UTF8)
            });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/spanner/pgadapter/wireoutput/StartUpMessageResponse.java [66:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  protected String getPayloadString() {
    return new MessageFormat("Length: {0}, " + "Parameter Key: {1}, " + "Parameter Value: {2}")
        .format(
            new Object[] {
              this.length,
              new String(this.parameterKey, UTF8),
              new String(this.parameterValue, UTF8)
            });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



