Skip to content

Commit

Permalink
Show unavailable browser versions only with verbose logging. See ptar…
Browse files Browse the repository at this point in the history
  • Loading branch information
mountaindude committed Feb 16, 2024
1 parent 3285b20 commit ba5299b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/browser/browser-list-available.js
Expand Up @@ -88,7 +88,7 @@ async function browserListAvailable(options) {
// Output Chrome versions and names to info log
if (browsersAvailable.length > 0) {
logger.info(`Chrome versions from "${options.channel}" channel:`);
logger.info(
logger.verbose(
'Note that not all versions may be available for use with Butler Sheet Icons.'
);

Expand All @@ -106,7 +106,7 @@ async function browserListAvailable(options) {
if (canDownloadBrowser) {
logger.info(` ${version.version}, "${version.name}"`);
} else {
logger.info(` ${version.version}, "${version.name}" (not available)`);
logger.verbose(` ${version.version}, "${version.name}" (not available)`);
}
}
} else {
Expand Down

0 comments on commit ba5299b

Please sign in to comment.