Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error logs (kernel and gnome-shell) #3063

Open
Cabus1982 opened this issue Mar 5, 2025 · 6 comments
Open

Error logs (kernel and gnome-shell) #3063

Cabus1982 opened this issue Mar 5, 2025 · 6 comments
Labels
awaiting-reply Awaiting reply question Further information is requested

Comments

@Cabus1982
Copy link

Cabus1982 commented Mar 5, 2025

Hello, I use Arch Linux with GNOME (Wayland), and I've noticed that when opening (or using) the app "youtube-music-bin", the AppIndicator extension continuously logs messages.
I haven't seen any impact on functionality, but I'd like to understand why the log gets flooded.
Thanks in advance!

App
youtube-music-bin 3.7.5-1
$ journalctl -f -p warning
`mar 05 08:40:37 Arch gnome-shell[986]: Gio.DBusError: GDBus.Error:org.freedesktop.DBus.Error.Failed: error occurred in Get                                       
                                       Stack trace:
                                         _promisify/proto[asyncFunc]/</<@resource:///org/gnome/gjs/modules/core/overrides/Gio.js:453:45
                                         @resource:///org/gnome/shell/ui/init.js:21:20
                                         ### Promise created here: ###
                                         getProperty@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/dbusProxy.js:89:33
                                         refreshProperty@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:306:48
                                         _refreshOwnProperties/<@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:192:32
                                         _refreshOwnProperties@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:190:51
                                         _onSignalAsync/refreshPropertiesPromises<@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:246:26
                                         _onSignalAsync@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:245:50
                                         async*_onSignal@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/appIndicator.js:204:14
                                         _init/<@file:///home/cperon/.local/share/gnome-shell/extensions/[email protected]/dbusProxy.js:40:43
                                         @resource:///org/gnome/shell/ui/init.js:21:20`
$ journalctl -k -f
mar 16 15:29:47 Arch kernel: rfkill: input handler enabled
mar 16 15:29:48 Arch kernel: traps: youtube-music[16089] trap invalid opcode ip:5ef678da337e sp:7ffedd147b30 error:0 in youtube-music[607e37e,5ef674d1f000+897a000]
Personal settings
`{"window-size":{"width":1107,"height":561},"window-maximized":true,"window-position":{"x":0,"y":54},"url":"https://music.youtube.com/watch?v=giryxvoPAng&list=LM&index=0","options":{"tray":true,"appVisible":true,"autoUpdates":false,"alwaysOnTop":false,"hideMenu":false,"hideMenuWarned":false,"startAtLogin":false,"disableHardwareAcceleration":false,"removeUpgradeButton":true,"restartOnConfigChanges":false,"trayClickPlayPause":false,"autoResetAppCache":false,"resumeOnStart":true,"likeButtons":"","proxy":"","startingPage":"","overrideUserAgent":false,"usePodcastParticipantAsArtist":false,"themes":[]},"plugins":{"notifications":{"enabled":false},"video-toggle":{"mode":"custom"},"precise-volume":{"enabled":true,"steps":"5","arrowsShortcut":true,"globalShortcuts":{"volumeUp":"","volumeDown":""},"savedVolume":100},"discord":{"listenAlong":true},"ambient-mode":{"enabled":true},"album-color-theme":{"enabled":true,"ratio":0.3},"amuse":{"enabled":false},"album-actions":{"enabled":false},"api-server":{"enabled":false},"blur-nav-bar":{"enabled":true},"bypass-age-restrictions":{"enabled":true},"compact-sidebar":{"enabled":false},"crossfade":{"enabled":false,"fadeInDuration":1500,"fadeOutDuration":2500,"secondsBeforeEnd":10,"fadeScaling":"linear"},"in-app-menu":{"enabled":true},"quality-changer":{"enabled":true},"sponsorblock":{"enabled":true},"skip-disliked-songs":{"enabled":true}},"__internal__":{"migrations":{"version":"3.7.5"}}}`
@ArjixWasTaken
Copy link
Contributor

please format your message using markdown
https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks

@Cabus1982
Copy link
Author

please format your message using markdown https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks

Done 👍️

@JellyBrick JellyBrick added the question Further information is requested label Mar 16, 2025
@JellyBrick
Copy link
Collaborator

Can you try enabling the 'Shortcuts (MPRIS)' plugin?

@JellyBrick JellyBrick added the awaiting-reply Awaiting reply label Mar 16, 2025
@Cabus1982
Copy link
Author

Cabus1982 commented Mar 16, 2025

Can you try enabling the 'Shortcuts (MPRIS)' plugin?

Yes, and no changes. I just added some kernel-level logs that I hadn't noticed before. ☝️☝️☝️

@Cabus1982 Cabus1982 changed the title error occurred in Get Stack trace Error logs (kernel and gnome-shell) Mar 16, 2025
@h-banii
Copy link
Contributor

h-banii commented Mar 16, 2025

from the stack trace it looks like an issue with your "appindicator" trying to retrieve some D-Bus property every N-seconds and failing.

I looked into their repo and found this issue
ubuntu/gnome-shell-extension-appindicator#534

Which was already fixed on master by this commit (it just ignores the error instead of spamming it)
ubuntu/gnome-shell-extension-appindicator@b1db0b6

If you follow the stack trace using master as reference you'll see that those errors in appIndicator.js:190:51 and appIndicator.js:192:32 should NOT happen anymore, since the commit introduced a check to catch it and ignore the error.

TLDR: Try using appindicator's master version.


It doesn't look like an issue with youtube-music, I think this can be closed.

If somehow master still doesn't work, go to this issue
ubuntu/gnome-shell-extension-appindicator#551
(it's probably a duplicate of 534 though, as another user in there already pointed it out)

@Cabus1982
Copy link
Author

from the stack trace it looks like an issue with your "appindicator" trying to retrieve some D-Bus property every N-seconds and failing.

I looked into their repo and found this issue ubuntu/gnome-shell-extension-appindicator#534

Which was already fixed on master by this commit (it just ignores the error instead of spamming it) ubuntu/gnome-shell-extension-appindicator@b1db0b6

If you follow the stack trace using master as reference you'll see that those errors in appIndicator.js:190:51 and appIndicator.js:192:32 should NOT happen anymore, since the commit introduced a check to catch it and ignore the error.

TLDR: Try using appindicator's master version.

It doesn't look like an issue with youtube-music, I think this can be closed.

If somehow master still doesn't work, go to this issue ubuntu/gnome-shell-extension-appindicator#551 (it's probably a duplicate of 534 though, as another user in there already pointed it out)

You may be right, because I installed another extension for that purpose (status icon) and those particular logs no longer appear. We'll see what others think and if necessary, I'll close the case. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting-reply Awaiting reply question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants