From: JCWasmx86 Date: Sun, 17 Jul 2022 09:08:25 +0000 (+0200) Subject: dbusgen/tests: Changed to info to error X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fwip%2Fdbusgen;p=thirdparty%2Fvala.git dbusgen/tests: Changed to info to error --- diff --git a/dbusgen/tests/runtime-test-server.vala b/dbusgen/tests/runtime-test-server.vala index 007d3b0fc..8e80aef4c 100644 --- a/dbusgen/tests/runtime-test-server.vala +++ b/dbusgen/tests/runtime-test-server.vala @@ -75,7 +75,7 @@ void on_bus_aquired (DBusConnection conn) { int main () { Bus.own_name (BusType.SESSION, "org.gnome.Example", BusNameOwnerFlags.REPLACE, on_bus_aquired, null, () => { - info ("Lost connection"); + error ("Lost connection"); }); new MainLoop ().run (); return 0;