Changeset 5a88d87 in mainline for uspace/srv/sysman/sysman.c


Ignore:
Timestamp:
2019-08-17T13:13:53Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
c7b9db03
Parents:
ff20afc
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-12-04 14:00:12)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-17 13:13:53)
Message:

sysman: Remove unused logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/sysman.c

    rff20afc r5a88d87  
    196196
    197197                /* Process event */
    198                 //sysman_log(LVL_DEBUG2, "process_event(%p, %p)",
    199                 //    event->handler, event->data);
    200198                event->handler(event->data);
    201199                free(event);
     
    238236void sysman_raise_event(event_handler_t handler, void *data)
    239237{
    240         //sysman_log(LVL_DEBUG2, "%s(%p, %p)", __func__, handler, data);
    241238        event_t *event = malloc(sizeof(event_t));
    242239        if (event == NULL) {
Note: See TracChangeset for help on using the changeset viewer.