This commit is contained in:
Quentin McGaw (desktop)
2020-02-10 18:14:14 +00:00
parent 040b5afca6
commit 77c6eeb765

View File

@@ -31,7 +31,7 @@ func (c *configurator) GetPortForward() (port uint16, err error) {
if err := json.Unmarshal(content, &body); err != nil {
return 0, fmt.Errorf("port forwarding response: %w", err)
}
c.logger.Info("%s: Port forwarded is %d", logPrefix, port)
c.logger.Info("%s: Port forwarded is %d", logPrefix, body.Port)
return body.Port, nil
}