Skip to content

Commit 0d4e84d

Browse files
authored
fix log message (microsoft#166598)
related to microsoft#163418
1 parent 001abb1 commit 0d4e84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/policy/node/nativePolicyService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class NativePolicyService extends AbstractPolicyService implements IPolic
2323
}
2424

2525
protected async _updatePolicyDefinitions(policyDefinitions: IStringDictionary<PolicyDefinition>): Promise<void> {
26-
this.logService.trace(`NativePolicyService#_updatePolicyDefinitions - Found ${policyDefinitions.length} policy definitions`);
26+
this.logService.trace(`NativePolicyService#_updatePolicyDefinitions - Found ${Object.keys(policyDefinitions).length} policy definitions`);
2727

2828
await this.throttler.queue(() => new Promise<void>((c, e) => {
2929
try {

0 commit comments

Comments
 (0)