From 680e73bb97d21441ccbed519758022eb92e5020f Mon Sep 17 00:00:00 2001 From: joeduffy Date: Mon, 23 Oct 2017 15:31:01 -0700 Subject: [PATCH] Add context to "unexpected unknown property" error log --- sdk/nodejs/runtime/rpc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/nodejs/runtime/rpc.ts b/sdk/nodejs/runtime/rpc.ts index ca7890dea..db2beb025 100644 --- a/sdk/nodejs/runtime/rpc.ts +++ b/sdk/nodejs/runtime/rpc.ts @@ -177,7 +177,7 @@ async function serializeProperty(prop: any, ctx?: string): Promise { log.debug(`Serialize property [${ctx}]: undefined`); } if (!options.dryRun) { - log.error(`Unexpected unknown property during deployment`); + log.error(`Unexpected unknown property [${ctx}] during deployment`); } return unknownComputedValue; }