fix log message (#166598)

related to #163418
This commit is contained in:
João Moreno 2022-11-17 07:57:29 -08:00 committed by GitHub
parent 001abb14c8
commit 0d4e84d528
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ export class NativePolicyService extends AbstractPolicyService implements IPolic
}
protected async _updatePolicyDefinitions(policyDefinitions: IStringDictionary<PolicyDefinition>): Promise<void> {
this.logService.trace(`NativePolicyService#_updatePolicyDefinitions - Found ${policyDefinitions.length} policy definitions`);
this.logService.trace(`NativePolicyService#_updatePolicyDefinitions - Found ${Object.keys(policyDefinitions).length} policy definitions`);
await this.throttler.queue(() => new Promise<void>((c, e) => {
try {