mirror of https://github.com/grpc/grpc-node.git
grpc-js-xds: interop client: reduce periodic logging
This commit is contained in:
parent
e570a99d6d
commit
57c1bd2ede
|
@ -467,9 +467,11 @@ function sendConstantQps(client: TestServiceClient, qps: number, failOnFailedRpc
|
|||
makeSingleRequest(client, callType, failOnFailedRpcs, callStatsTracker, callStartTimestampsTrackers[callType]);
|
||||
}
|
||||
}, 1000/qps);
|
||||
setInterval(() => {
|
||||
console.log(`Accumulated stats: ${JSON.stringify(accumulatedStats, undefined, 2)}`);
|
||||
}, 1000);
|
||||
if (VERBOSITY >= 2) {
|
||||
setInterval(() => {
|
||||
console.log(`Accumulated stats: ${JSON.stringify(accumulatedStats, undefined, 2)}`);
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
|
||||
const callTypeEnumMap = {
|
||||
|
|
Loading…
Reference in New Issue