Skip to content

Commit

Permalink
more log updates (#166640)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno authored Nov 17, 2022
1 parent 04ee3ba commit 4ff1974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/policy/node/nativePolicyService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class NativePolicyService extends AbstractPolicyService implements IPolic
}

private _onDidPolicyChange(update: PolicyUpdate<IStringDictionary<PolicyDefinition>>): void {
this.logService.trace(`NativePolicyService#_onDidPolicyChange - Updated policy values: ${Object.keys(update).join(', ')}`);
this.logService.trace(`NativePolicyService#_onDidPolicyChange - Updated policy values: ${JSON.stringify(update)}`);

for (const key in update) {
const value = update[key] as any;
Expand Down

0 comments on commit 4ff1974

Please sign in to comment.