As far as I can tell, there's no easy way to suppress printed messages from log calls.
During development, this can get out of hand. My desktop environment, for example, constantly fetches the position, so when audio is playing, I get a constant stream of the following:
[audio_service_mpris] Requested property Position from org.mpris.MediaPlayer2.Player
[audio_service_mpris] GetPosition(): 0:01:42.003538
[audio_service_mpris] Requested property Position from org.mpris.MediaPlayer2.Player
[audio_service_mpris] GetPosition(): 0:01:42.003538
[audio_service_mpris] Requested property CanSeek from org.mpris.MediaPlayer2.Player
[audio_service_mpris] Requested property Position from org.mpris.MediaPlayer2.Player
[audio_service_mpris] GetPosition(): 0:01:42.003538
...
It'd be great if there was a way to stop logging altogether.
As far as I can tell, there's no easy way to suppress printed messages from
log
calls.During development, this can get out of hand. My desktop environment, for example, constantly fetches the position, so when audio is playing, I get a constant stream of the following:
It'd be great if there was a way to stop logging altogether.