Skip to content

Commit 9b9c61a

Browse files
authored
Fix outbound log parameter. (#389)
1 parent 4f725d2 commit 9b9c61a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/sip/outbound.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func (c *Client) newCall(ctx context.Context, conf *config.Config, log logger.Lo
105105
state: state,
106106
jitterBuf: jitterBuf,
107107
}
108-
c.log = c.log.WithValues("jitterBuf", call.jitterBuf)
108+
call.log = call.log.WithValues("jitterBuf", call.jitterBuf)
109109
call.cc = c.newOutbound(log, id, URI{
110110
User: sipConf.from,
111111
Host: sipConf.host,

0 commit comments

Comments
 (0)