Skip to content

Commit

Permalink
refactor: remove console.log with logInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeintner committed Sep 7, 2023
1 parent 186acaf commit c06c67c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/td-tools/src/util/asset-interface-description.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class AssetInterfaceDescriptionUtil {

const aidID = td.id ? td.id : "ID" + Math.random();

console.log("TD " + td.title + " parsed...");
logInfo("TD " + td.title + " parsed...");

// collect all possible prefixes
if (protocols === undefined || protocols.length === 0) {
Expand Down Expand Up @@ -556,7 +556,6 @@ export class AssetInterfaceDescriptionUtil {
// iterate over securitySchemes
// eslint-disable-next-line unused-imports/no-unused-vars
for (const [key, value] of Object.entries(thing.securityDefinitions)) {
// console.log(key, value);
// TODO we could change the name to avoid name collisions. Shall we do so?
secNames.push(key);
}
Expand Down

0 comments on commit c06c67c

Please sign in to comment.