We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ee3ba commit 4ff1974Copy full SHA for 4ff1974
src/vs/platform/policy/node/nativePolicyService.ts
@@ -39,7 +39,7 @@ export class NativePolicyService extends AbstractPolicyService implements IPolic
39
}
40
41
private _onDidPolicyChange(update: PolicyUpdate<IStringDictionary<PolicyDefinition>>): void {
42
- this.logService.trace(`NativePolicyService#_onDidPolicyChange - Updated policy values: ${Object.keys(update).join(', ')}`);
+ this.logService.trace(`NativePolicyService#_onDidPolicyChange - Updated policy values: ${JSON.stringify(update)}`);
43
44
for (const key in update) {
45
const value = update[key] as any;
0 commit comments