Skip to content

Commit

Permalink
Remove unused debug logging
Browse files Browse the repository at this point in the history
These were accidentally left in after testing.
  • Loading branch information
spiiroin committed Aug 25, 2014
1 parent 7ea70a0 commit eda8f22
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions mce-sensorfw.c
Expand Up @@ -1260,8 +1260,6 @@ sfw_reporting_trans(sfw_reporting_t *self, sfw_reporting_state_t state)
static void
sfw_reporting_value_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_reporting_t *self = aptr;

DBusMessage *rsp = 0;
Expand Down Expand Up @@ -1335,8 +1333,6 @@ sfw_reporting_value_cb(DBusPendingCall *pc, void *aptr)
static void
sfw_reporting_change_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_reporting_t *self = aptr;
DBusMessage *rsp = 0;
DBusError err = DBUS_ERROR_INIT;
Expand Down Expand Up @@ -1550,8 +1546,6 @@ sfw_override_trans(sfw_override_t *self, sfw_override_state_t state)
static void
sfw_override_start_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_override_t *self = aptr;
DBusMessage *rsp = 0;
DBusError err = DBUS_ERROR_INIT;
Expand Down Expand Up @@ -1814,8 +1808,6 @@ sfw_connection_rx_dta(sfw_connection_t *self)
static gboolean
sfw_connection_tx_cb(GIOChannel *chn, GIOCondition cnd, gpointer aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

(void)chn;
(void)cnd;

Expand Down Expand Up @@ -1852,8 +1844,6 @@ sfw_connection_tx_cb(GIOChannel *chn, GIOCondition cnd, gpointer aptr)
static gboolean
sfw_connection_rx_cb(GIOChannel *chn, GIOCondition cnd, gpointer aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

(void)chn;
(void)cnd;

Expand Down Expand Up @@ -2196,8 +2186,6 @@ sfw_session_trans(sfw_session_t *self, sfw_session_state_t state)
static void
sfw_session_start_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_session_t *self = aptr;
DBusMessage *rsp = 0;
DBusError err = DBUS_ERROR_INIT;
Expand Down Expand Up @@ -2507,8 +2495,6 @@ sfw_plugin_delete(sfw_plugin_t *self)
static void
sfw_plugin_load_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_plugin_t *self = aptr;
DBusMessage *rsp = 0;
DBusError err = DBUS_ERROR_INIT;
Expand Down Expand Up @@ -2735,8 +2721,6 @@ sfw_service_cancel_query(sfw_service_t *self)
static void
sfw_service_query_cb(DBusPendingCall *pc, void *aptr)
{
//mce_log(LL_DEBUG, "TRIGGER");

sfw_service_t *self = aptr;
DBusMessage *rsp = 0;
const char *owner = 0;
Expand Down Expand Up @@ -3339,15 +3323,11 @@ void mce_sensorfw_ps_attach(int fd)
static gboolean
sfw_name_owner_changed_cb(DBusMessage *const msg)
{
//mce_log(LL_DEBUG, "TRIGGER");

DBusError err = DBUS_ERROR_INIT;
const char *name = 0;
const char *prev = 0;
const char *curr = 0;

//mce_log(LL_DEBUG, "got sensorfw name owner change");

if( !msg )
goto EXIT;

Expand Down

0 comments on commit eda8f22

Please sign in to comment.