Skip to content

Commit

Permalink
Change log level on pixi interpreter discovery to reduce confusion (#…
Browse files Browse the repository at this point in the history
…24164)

Reference: #23773 and
#23773 (comment)

It seems that pixi warnings may be confusing unnecessary confusion among
folks who may not even intend to use pixi environment. Changing log
level for clarity and further help diagnosing problems that may be
unrelated to pixi.
  • Loading branch information
anthonykim1 committed Sep 24, 2024
1 parent d879a0d commit dd76d4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export async function getPixiEnvironmentFromInterpreter(
// Find the pixi executable for the project
pixi = pixi || (await Pixi.getPixi());
if (!pixi) {
traceWarn(`could not find a pixi interpreter for the interpreter at ${interpreterPath}`);
traceVerbose(`could not find a pixi interpreter for the interpreter at ${interpreterPath}`);
return undefined;
}

Expand Down

0 comments on commit dd76d4f

Please sign in to comment.