Skip to content

Commit a103631

Browse files
committed
Fix merge conflict resolution
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
1 parent c116d13 commit a103631

13 files changed

Lines changed: 172 additions & 174 deletions

File tree

packages/zowe-explorer/l10n/bundle.l10n.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -928,9 +928,7 @@
928928
]
929929
},
930930
"Favorites": "Favorites",
931-
"VSAM Favorites": "VSAM Favorites",
932-
"Member Favorites": "Member Favorites",
933-
"Migrated Favorites": "Migrated Favorites",
931+
"Favorites changes": "Favorites changes",
934932
"Fetching data set...": "Fetching data set...",
935933
"Fetching spool file...": "Fetching spool file...",
936934
"File does not exist. It may have been deleted.": "File does not exist. It may have been deleted.",
@@ -1036,6 +1034,7 @@
10361034
"Fixed an issue where a recalled PDS is expandable after it is migrated through Zowe Explorer. <a>#3294</a>": "Fixed an issue where a recalled PDS is expandable after it is migrated through Zowe Explorer. <a>#3294</a>",
10371035
"Fixed an issue where a TypeError occurred when applying VS Code proxy settings to an invalid session. <a>#3425</a>": "Fixed an issue where a TypeError occurred when applying VS Code proxy settings to an invalid session. <a>#3425</a>",
10381036
"Fixed an issue where adding an item to favorites was still incorrectly showing the \"Add to Favorites\" icon on it. <a>#3712</a>": "Fixed an issue where adding an item to favorites was still incorrectly showing the \"Add to Favorites\" icon on it. <a>#3712</a>",
1037+
"Fixed an issue where additional error details were not displayed, particularly using SSH profiles. <a>zowex/#766</a>": "Fixed an issue where additional error details were not displayed, particularly using SSH profiles. <a>zowex/#766</a>",
10391038
"Fixed an issue where an error appeared when moving an empty PDS across LPARs. <a>#4001</a>": "Fixed an issue where an error appeared when moving an empty PDS across LPARs. <a>#4001</a>",
10401039
"Fixed an issue where an incorrect profile name is shown in the output for the \"Issue Unix Command\" function when an SSH profile is required to issue commands. <a>#3646</a>": "Fixed an issue where an incorrect profile name is shown in the output for the \"Issue Unix Command\" function when an SSH profile is required to issue commands. <a>#3646</a>",
10411040
"Fixed an issue where an invalid session on a profile caused an unexpected Profile auth error login dialog to appear. <a>#3524</a>": "Fixed an issue where an invalid session on a profile caused an unexpected Profile auth error login dialog to appear. <a>#3524</a>",

packages/zowe-explorer/l10n/poeditor.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,9 +1155,7 @@
11551155
"Failed to update Zowe schema: insufficient permissions or read-only file. {0}": "",
11561156
"Failed to upload changes for {0}: {1}": "",
11571157
"Favorites": "",
1158-
"VSAM Favorites": "",
1159-
"Member Favorites": "",
1160-
"Migrated Favorites": "",
1158+
"Favorites changes": "",
11611159
"Fetching data set...": "",
11621160
"Fetching spool file...": "",
11631161
"File does not exist. It may have been deleted.": "",
@@ -1230,6 +1228,7 @@
12301228
"Fixed an issue where a recalled PDS is expandable after it is migrated through Zowe Explorer. <a>#3294</a>": "",
12311229
"Fixed an issue where a TypeError occurred when applying VS Code proxy settings to an invalid session. <a>#3425</a>": "",
12321230
"Fixed an issue where adding an item to favorites was still incorrectly showing the \"Add to Favorites\" icon on it. <a>#3712</a>": "",
1231+
"Fixed an issue where additional error details were not displayed, particularly using SSH profiles. <a>zowex/#766</a>": "",
12331232
"Fixed an issue where an error appeared when moving an empty PDS across LPARs. <a>#4001</a>": "",
12341233
"Fixed an issue where an incorrect profile name is shown in the output for the \"Issue Unix Command\" function when an SSH profile is required to issue commands. <a>#3646</a>": "",
12351234
"Fixed an issue where an invalid session on a profile caused an unexpected Profile auth error login dialog to appear. <a>#3524</a>": "",

packages/zowe-explorer/src/tools/ZoweLogger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import * as vscode from "vscode";
1515
import * as loggerConfig from "../../log4jsconfig.json";
1616
import * as path from "path";
17-
import { Gui, imperative, MessageSeverity, ZoweVsCodeExtension } from "@zowe/zowe-explorer-api";
17+
import { Gui, handleError, imperative, MessageSeverity, ZoweVsCodeExtension } from "@zowe/zowe-explorer-api";
1818
import type { Config, LayoutFunction, LayoutsParam, LoggingEvent } from "log4js";
1919

2020
export class ZoweLogger {
@@ -49,7 +49,7 @@ export class ZoweLogger {
4949
for (const appenderName of Object.keys(loggerConfigCopy.log4jsConfig.appenders)) {
5050
loggerConfigCopy.log4jsConfig.appenders[appenderName].filename = path.join(
5151
logsPath,
52-
loggerConfigCopy.log4jsConfig.appenders[appenderName].filename
52+
loggerConfigCopy.log4jsConfig.appenders[appenderName].filename,
5353
);
5454
loggerConfigCopy.log4jsConfig.categories[appenderName].level = zeLogLevel;
5555
}

0 commit comments

Comments
 (0)