Skip to content

Commit 4bff372

Browse files
committed
grpc-js: Remove logging in QueuePicker
1 parent 036e0e1 commit 4bff372

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

packages/grpc-js/src/picker.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@
1717

1818
import { StatusObject } from './call-interface';
1919
import { Metadata } from './metadata';
20-
import { LogVerbosity, Status } from './constants';
20+
import { Status } from './constants';
2121
import { LoadBalancer } from './load-balancer';
2222
import { SubchannelInterface } from './subchannel-interface';
23-
import { trace } from './logging';
2423

2524
export enum PickResultType {
2625
COMPLETE,
@@ -135,12 +134,6 @@ export class QueuePicker {
135134
) {}
136135

137136
pick(pickArgs: PickArgs): PickResult {
138-
trace(
139-
LogVerbosity.DEBUG,
140-
'picker',
141-
'Queue picker called for load balancer of type ' +
142-
this.loadBalancer.constructor.name
143-
);
144137
if (!this.calledExitIdle) {
145138
process.nextTick(() => {
146139
this.loadBalancer.exitIdle();

0 commit comments

Comments
 (0)