Changes in uspace/lib/c/generic/io/log.c [fc51296:ebcb05a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
rfc51296 rebcb05a 84 84 * if verbosity is less than or equal to current 85 85 * reporting level. 86 * @param fmt Format string 86 * @param fmt Format string (no traling newline). 87 87 */ 88 88 void log_msg(log_level_t level, const char *fmt, ...) … … 100 100 * if verbosity is less than or equal to current 101 101 * reporting level. 102 * @param fmt Format string 102 * @param fmt Format string (no trailing newline) 103 103 */ 104 104 void log_msgv(log_level_t level, const char *fmt, va_list args) … … 113 113 log_level_names[level]); 114 114 vfprintf(log_stream, fmt, args); 115 fputc('\n', log_stream); 115 116 fflush(log_stream); 116 117
Note:
See TracChangeset
for help on using the changeset viewer.