Changes in uspace/lib/c/generic/io/log.c [ebcb05a:fc51296] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
rebcb05a rfc51296 84 84 * if verbosity is less than or equal to current 85 85 * reporting level. 86 * @param fmt Format string (no traling newline).86 * @param fmt Format string 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 (no trailing newline)102 * @param fmt Format string 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);116 115 fflush(log_stream); 117 116
Note:
See TracChangeset
for help on using the changeset viewer.