Skip to content

Commit

Permalink
Changed some console calls to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfpg committed Dec 20, 2019
1 parent b367103 commit 7b8391c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ng-openapi-gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ export class NgOpenApiGen {
const tags = this.openApi.tags || [];
for (const tagName of operationsByTag.keys()) {
if (includeTags.length > 0 && !includeTags.includes(tagName)) {
console.info(`Ignoring tag ${tagName} because it is not listed in the 'includeTags' option`);
console.debug(`Ignoring tag ${tagName} because it is not listed in the 'includeTags' option`);
continue;
}
if (excludeTags.length > 0 && excludeTags.includes(tagName)) {
console.info(`Ignoring tag ${tagName} because it is listed in the 'excludeTags' option`);
console.debug(`Ignoring tag ${tagName} because it is listed in the 'excludeTags' option`);
continue;
}
const operations = operationsByTag.get(tagName) || [];
Expand Down

0 comments on commit 7b8391c

Please sign in to comment.