devip: print protocol name in garbage collection notification
This commit is contained in:
parent
47e52123d0
commit
c145a2c0aa
1 changed files with 5 additions and 4 deletions
|
@ -1321,10 +1321,11 @@ retry:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(pp >= ep) {
|
if(pp >= ep) {
|
||||||
if(p->gc)
|
if(p->gc != nil){
|
||||||
print("Fsprotoclone: garbage collecting Convs\n");
|
print("Fsprotoclone: garbage collecting %s Convs\n", p->name);
|
||||||
if(p->gc != nil && (*p->gc)(p))
|
if((*p->gc)(p))
|
||||||
goto retry;
|
goto retry;
|
||||||
|
}
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue