Changeset 09ab0a9a in mainline for uspace/srv/logger
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/srv/logger
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/ctl.c
rb2aaaa0 r09ab0a9a 104 104 } 105 105 106 107 106 /** 108 107 * @} -
uspace/srv/logger/initlvl.c
rb2aaaa0 r09ab0a9a 57 57 } 58 58 59 60 59 log_level_t level; 61 60 errno_t rc = log_level_from_str(value, &level); -
uspace/srv/logger/logger.h
rb2aaaa0 r09ab0a9a 97 97 errno_t set_default_logging_level(log_level_t); 98 98 99 100 99 void logger_connection_handler_control(ipc_call_t *); 101 100 void logger_connection_handler_writer(ipc_call_t *); -
uspace/srv/logger/logs.c
rb2aaaa0 r09ab0a9a 37 37 #include "logger.h" 38 38 39 40 39 static FIBRIL_MUTEX_INITIALIZE(log_list_guard); 41 40 static LIST_INITIALIZE(log_list); 42 43 41 44 42 static logger_log_t *find_log_by_name_and_parent_no_list_lock(const char *name, logger_log_t *parent) … … 285 283 } 286 284 287 288 285 void write_to_log(logger_log_t *log, log_level_t level, const char *message) 289 286 { -
uspace/srv/logger/writer.c
rb2aaaa0 r09ab0a9a 47 47 #include <str_error.h> 48 48 #include "logger.h" 49 50 49 51 50 static logger_log_t *handle_create_log(sysarg_t parent)
Note:
See TracChangeset
for help on using the changeset viewer.