Changeset 1c67b41 in mainline
- Timestamp:
- 2012-08-16T11:20:24Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eab3d04
- Parents:
- 04da852
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
r04da852 r1c67b41 46 46 static const char *log_prog_name; 47 47 48 static const char *log_level_names[] = { 49 "fatal", 50 "error", 51 "warn", 52 "note", 53 "debug", 54 "debug2" 55 }; 56 48 57 /** IPC session with the logger service. */ 49 58 static async_sess_t *logger_session; … … 162 171 } 163 172 173 const char *log_level_str(log_level_t level) 174 { 175 if (level >= LVL_LIMIT) 176 return "unknown"; 177 else 178 return log_level_names[level]; 179 } 180 164 181 /** Initialize the logging system. 165 182 * -
uspace/lib/c/include/io/log.h
r04da852 r1c67b41 50 50 } log_level_t; 51 51 52 extern const char *log_level_str(log_level_t); 53 52 54 extern bool __log_shall_record(log_level_t); 53 55 extern int log_init(const char *, log_level_t); -
uspace/srv/logger/namespace.c
r04da852 r1c67b41 218 218 { 219 219 if (level <= namespace_get_actual_log_level(namespace)) { 220 printf("[%s %d]: %s\n", namespace->name, level, message); 221 fprintf(namespace->logfile, "[%d]: %s\n", level, message); 220 const char *level_name = log_level_str(level); 221 printf("[%s %s]: %s\n", namespace->name, level_name, message); 222 fprintf(namespace->logfile, "%s: %s\n", level_name, message); 222 223 fflush(namespace->logfile); 223 224 fflush(stdout);
Note:
See TracChangeset
for help on using the changeset viewer.