Projet

Général

Profil

0001-build-filter-more-dbus-bug-assert-to-avoid-log-bloat.patch

Corentin Séchet, 03 mai 2022 13:02

Télécharger (788 octets)

Voir les différences:

Subject: [PATCH] build: filter more dbus bug assert to avoid log bloat
 (#64790)

 src/inkscape_wrapper.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/inkscape_wrapper.py
20 20
)
21 21

  
22 22
for line in inkscape.stdout:
23
    if "dbus_g_connection_register_g_object: assertion 'connection != NULL' failed" in line:
23
    if "assertion 'connection != NULL' failed" in line:
24 24
        continue
25 25

  
26 26
    sys.stdout.write(line)
27
-