Remove console.log call (#5845)

Remove console.log call that's adding unnecessary diagnostic messages to programs that use multi-lang components.
This commit is contained in:
Justin Van Patten 2020-12-01 16:35:30 -08:00 committed by GitHub
parent 679d40950f
commit c27d2921c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -279,8 +279,6 @@ class Server implements grpc.UntypedServiceImplementation {
const deserializedInputs = runtime.deserializeProperties(req.getInputs());
for (const k of Object.keys(deserializedInputs)) {
const inputDeps = inputDependencies.get(k);
console.log(`${k}: ${inputDeps ? JSON.stringify(inputDeps.getUrnsList()) : []}`);
const deps = (inputDeps ? <resource.URN[]>inputDeps.getUrnsList() : [])
.map(depUrn => new resource.DependencyResource(depUrn));
const input = deserializedInputs[k];