aboutsummaryrefslogtreecommitdiff
path: root/src/usb-snap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/usb-snap.cpp')
-rw-r--r--src/usb-snap.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/usb-snap.cpp b/src/usb-snap.cpp
index 629898b..53db6c4 100644
--- a/src/usb-snap.cpp
+++ b/src/usb-snap.cpp
@@ -119,7 +119,6 @@ private:
g_variant_builder_add(&hints_builder, "{sv}", "x-canonical-snap-decisions", g_variant_new_string("true"));
g_variant_builder_add(&hints_builder, "{sv}", "x-canonical-private-affirmative-tint", g_variant_new_string("true"));
-g_message("%s calling notification notify", G_STRLOC);
auto args = g_variant_new("(susssasa{sv}i)",
"",
uint32_t(0),
@@ -154,7 +153,6 @@ g_message("%s calling notification notify", G_STRLOC);
g_warning("UsbSnap: Error calling Notify: %s", error->message);
g_clear_error(&error);
} else {
-g_message("%s on_notify reply %s", G_STRLOC, g_variant_print(reply, true));
uint32_t id {};
g_variant_get(reply, "(u)", &id);
static_cast<Impl*>(gself)->on_notify_reply(id);
@@ -164,7 +162,6 @@ g_message("%s on_notify reply %s", G_STRLOC, g_variant_print(reply, true));
void on_notify_reply(uint32_t id)
{
-g_message("%s setting m_notification_id to %d", G_STRLOC, int(id));
m_notification_id = id;
}
@@ -180,7 +177,6 @@ g_message("%s setting m_notification_id to %d", G_STRLOC, int(id));
g_return_if_fail(!g_strcmp0(interface_name, DBusNames::Notify::INTERFACE));
auto self = static_cast<Impl*>(gself);
-g_message("%s got signal %s with parameters %s", G_STRLOC, signal_name, g_variant_print(parameters, true));
if (!g_strcmp0(signal_name, DBusNames::Notify::ActionInvoked::NAME))
{
@@ -212,17 +208,14 @@ g_message("%s got signal %s with parameters %s", G_STRLOC, signal_name, g_varian
const bool remember_this_choice = response == AdbdClient::PKResponse::ALLOW;
m_on_user_response(response, remember_this_choice);
-g_message("%s clearing m_notification_id", G_STRLOC);
m_notification_id = 0;
}
void on_notification_closed(uint32_t close_reason)
{
-g_message("%s closed with reason %d", G_STRLOC, int(close_reason));
if (close_reason == DBusNames::Notify::NotificationClosed::Reason::EXPIRED)
m_on_user_response(AdbdClient::PKResponse::DENY, false);
-g_message("%s clearing m_notification_id", G_STRLOC);
m_notification_id = 0;
}