Changeset 5a88d87 in mainline


Ignore:
Timestamp:
2019-08-17T13:13:53Z (5 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

Location:
uspace/srv/sysman
Files:
2 edited

Legend:

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

    rff20afc r5a88d87  
    6969        unit_t *unit = repo_find_unit_by_name(unit_name);
    7070        if (unit == NULL) {
    71                 //sysman_log(LVL_NOTE, "Unit '%s' not found.", unit_name);
    7271                retval = ENOENT;
    7372                goto finish;
     
    9796        }
    9897
    99         //sysman_log(LVL_DEBUG2, "%s(%s)", __func__, exposee);
    10098
    10199        retval = ENOTSUP;
  • 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.