Changeset f92b315 in mainline for uspace/srv/sysman/unit.c
- Timestamp:
- 2019-08-17T13:58:13Z (6 years ago)
- Children:
- 241f1985
- Parents:
- 8d74fdd
- git-author:
- Michal Koutny <xm.koutny+hos@…> (2016-02-07 22:30:40)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-17 13:58:13)
- File:
-
- 1 edited
-
uspace/srv/sysman/unit.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/unit.c
r8d74fdd rf92b315 137 137 int unit_start(unit_t *unit) 138 138 { 139 sysman_log(LVL_ DEBUG, "%s('%s')", __func__, unit_name(unit));139 sysman_log(LVL_NOTE, "%s('%s')", __func__, unit_name(unit)); 140 140 return UNIT_VMT(unit)->start(unit); 141 141 } … … 147 147 int unit_stop(unit_t *unit) 148 148 { 149 sysman_log(LVL_ DEBUG, "%s('%s')", __func__, unit_name(unit));149 sysman_log(LVL_NOTE, "%s('%s')", __func__, unit_name(unit)); 150 150 return UNIT_VMT(unit)->stop(unit); 151 151 } … … 153 153 void unit_exposee_created(unit_t *unit) 154 154 { 155 sysman_log(LVL_DEBUG , "%s('%s')", __func__, unit_name(unit));155 sysman_log(LVL_DEBUG2, "%s('%s')", __func__, unit_name(unit)); 156 156 return UNIT_VMT(unit)->exposee_created(unit); 157 157 } … … 159 159 void unit_fail(unit_t *unit) 160 160 { 161 sysman_log(LVL_ DEBUG, "%s('%s')", __func__, unit_name(unit));161 sysman_log(LVL_WARN, "%s('%s')", __func__, unit_name(unit)); 162 162 return UNIT_VMT(unit)->fail(unit); 163 163 }
Note:
See TracChangeset
for help on using the changeset viewer.
