Skip to content

Commit

Permalink
perf: remove one console log output
Browse files Browse the repository at this point in the history
  • Loading branch information
mbehr1 committed Mar 7, 2021
1 parent 29c15f7 commit d25ea75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dltLifecycle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export class DltLifecycleInfo {
const knownApidInfo = this.apidInfos.get(apidInfo.apid);
if (knownApidInfo !== undefined) {
if (knownApidInfo.desc.length === 0 && apidInfo.desc.length > 0) {
console.log(`overwriting apidInfo ${apidInfo.apid} ${knownApidInfo.desc} with ${apidInfo.desc}`);
// console.log(`overwriting apidInfo ${apidInfo.apid} ${knownApidInfo.desc} with ${apidInfo.desc}`);
knownApidInfo.desc = apidInfo.desc;
}
for (let c = 0; c < apidInfo.ctids.length; ++c) {
Expand Down

0 comments on commit d25ea75

Please sign in to comment.