Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: remove redundant log line (#868)
  • Loading branch information
schmidt-sebastian committed Jan 9, 2020
1 parent 43472f6 commit af3196f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions dev/src/pool.ts
Expand Up @@ -78,12 +78,6 @@ export class ClientPool<T> {
requestCount > selectedClientRequestCount &&
requestCount < this.concurrentOperationLimit
) {
logger(
'ClientPool.acquire',
requestTag,
'Re-using existing client with %s remaining operations',
this.concurrentOperationLimit - requestCount
);
selectedClient = client;
selectedClientRequestCount = requestCount;
}
Expand Down

0 comments on commit af3196f

Please sign in to comment.