We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3135c commit d6afbb6Copy full SHA for d6afbb6
client/src/addon_manager/models/addon.ts
@@ -81,7 +81,9 @@ export class Addon {
81
currentVersion = await moduleGit
82
.revparse(["--short", "HEAD"])
83
.catch((err) => {
84
- localLogger.warn(err);
+ localLogger.warn(
85
+ `Failed to get current hash for ${this.name}: ${err}`
86
+ );
87
return null;
88
});
89
}
0 commit comments