Skip to content

Commit baaf42b

Browse files
authored
Merge pull request #1191 from jijojosephk/issue_1167
Debugging support for 1167
2 parents cfd7b1c + ebdc75c commit baaf42b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

app/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function onCustomBGServiceConfigDownloadSuccess(data) {
296296
logger.debug(`Custom background service remote configuration stored at '${downloadPath}'`);
297297
}
298298
catch (err) {
299-
logger.error(`Failed to save remote configuration at '${downloadPath}'`);
299+
logger.error(`Fetched custom background remote configuration but failed to save at '${downloadPath}'. ${err.message}`);
300300
}
301301
}
302302

@@ -315,11 +315,11 @@ function setPath(cfg) {
315315

316316
function onCustomBGServiceConfigDownloadFailure(err) {
317317
const dlpath = path.join(app.getPath('userData'), 'custom_bg_remote.json');
318-
logger.error(err.message);
318+
logger.error(`Failed to fetch custom background remote configuration. ${err.message}`);
319319
try {
320320
fs.writeFileSync(dlpath, JSON.stringify([]));
321321
}
322322
catch (err) {
323-
logger.error(`Failed to save remote configuration at '${dlpath}'`);
323+
logger.error(`Failed to save custom background default configuration at '${dlpath}'. ${err.message}`);
324324
}
325325
}

com.github.IsmaelMartinez.teams_for_linux.appdata.xml

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
<url type="bugtracker">https://github.com/IsmaelMartinez/teams-for-linux/issues</url>
1515
<launchable type="desktop-id">com.github.IsmaelMartinez.teams_for_linux.desktop</launchable>
1616
<releases>
17+
<release version="1.4.23" date="2024-04-12">
18+
<description>
19+
<ul>
20+
<li>Additional logs for debugging custom background issues</li>
21+
</ul>
22+
</description>
23+
</release>
1724
<release version="1.4.22" date="2024-04-12">
1825
<description>
1926
<ul>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "teams-for-linux",
3-
"version": "1.4.22",
3+
"version": "1.4.23",
44
"main": "app/index.js",
55
"description": "Unofficial client for Microsoft Teams for Linux",
66
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",

0 commit comments

Comments
 (0)