Skip to content

Commit

Permalink
feat(cli): switch x-fern-ignore logs from 'info' to 'debug' (#5818)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachkirsch authored Jan 31, 2025
1 parent 10f8046 commit c812e6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function parseAsyncAPI({
for (const [channelPath, channel] of Object.entries(document.channels ?? {})) {
const shouldIgnore = getExtension<boolean>(channel, FernAsyncAPIExtension.IGNORE);
if (shouldIgnore != null && shouldIgnore) {
context.logger.info(`Channel ${channelPath} is marked with x-fern-ignore. Skipping.`);
context.logger.debug(`Channel ${channelPath} is marked with x-fern-ignore. Skipping.`);
continue;
}
if (channel.bindings?.ws == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function convertOperation({
}): ConvertedOperation | undefined {
const shouldIgnore = getExtension<boolean>(operation, FernOpenAPIExtension.IGNORE);
if (shouldIgnore != null && shouldIgnore) {
context.logger.info(
context.logger.debug(
`${pathItemContext.method.toUpperCase()} ${pathItemContext.path} is marked with x-fern-ignore. Skipping.`
);
return undefined;
Expand Down

0 comments on commit c812e6c

Please sign in to comment.