Skip to content

Commit

Permalink
Added detail to info message
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Haumer <[email protected]>
  • Loading branch information
phaumer committed Nov 11, 2024
1 parent 9e52988 commit b4af35e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/zowe-explorer/src/utils/ProfilesUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,11 @@ export class ProfilesUtils {
try {
ProfilesCache.requireKeyring();
} catch (_error) {
ZoweLogger.info(vscode.l10n.t("Default Zowe credentials manager not found on current platform."));
ZoweLogger.info(
vscode.l10n.t(
"Default Zowe credentials manager not found on current platform. This is typically the case when running in container-based environments or Linux systems that miss required security libraries or user permissions."
)
);
return false;
}
return true;
Expand Down

0 comments on commit b4af35e

Please sign in to comment.