Fix text in a refcount trace log

This commit is contained in:
murgatroid99 2020-02-19 11:08:45 -08:00
parent 439263d4e1
commit c7980f664d

View File

@ -525,7 +525,7 @@ export class Subchannel {
ref() {
trace(
this.subchannelAddressString +
' callRefcount ' +
' refcount ' +
this.refcount +
' -> ' +
(this.refcount + 1)
@ -536,7 +536,7 @@ export class Subchannel {
unref() {
trace(
this.subchannelAddressString +
' callRefcount ' +
' refcount ' +
this.refcount +
' -> ' +
(this.refcount - 1)