Changeset ebcb05a in mainline for uspace/lib/c/generic/io/log.c
- Timestamp:
- 2011-04-01T19:00:51Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 969585f, ea53529
- Parents:
- bdbb6f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
rbdbb6f6 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.