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.
2 parents da8e459 + 9450e96 commit f19d2eeCopy full SHA for f19d2ee
electron/watchers/wakatime.ts
@@ -195,6 +195,10 @@ export class Wakatime {
195
LogLevel.ERROR,
196
true,
197
);
198
+ this.tray?.displayBalloon({
199
+ title: "WakaTime Error",
200
+ content: `Error when running wakatime-cli: ${err}`,
201
+ });
202
}
203
if (output) {
204
Logging.instance().log(
@@ -252,13 +256,6 @@ export class Wakatime {
252
256
253
257
return;
254
258
255
- if (output) {
- Logging.instance().log(
- `Output from wakatime-cli when fetching code time: ${output}`,
- LogLevel.ERROR,
259
- true,
260
- );
261
- }
262
this.lastCodeTimeText = output;
263
this.tray?.setTitle(` ${output}`);
264
this.tray?.setToolTip(` ${output}`);
0 commit comments