Skip to content

Commit

Permalink
appIndicator: Include the stack in the debug error, not to miss it
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Aug 13, 2024
1 parent b1db0b6 commit 557dbdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,8 @@ class AppIndicatorProxy extends DBusProxy {
Util.Logger.debug(`Error when calling 'Get(${propertyName})' ` +
`in ${this.gName}, ${this.gObjectPath}, ` +
`org.freedesktop.DBus.Properties, ${this.gInterfaceName} ` +
`while refreshing property ${propertyName}: ${e}`);
`while refreshing property ${propertyName}: ${e}\n` +
`${e.stack}`);
this.set_cached_property(propertyName, null);
this._cancellables.delete(propertyName);
delete this._changedProperties[propertyName];
Expand Down

0 comments on commit 557dbdd

Please sign in to comment.