Changeset a1a101d in mainline for uspace/lib/c/generic/io/log.c
- Timestamp:
- 2012-08-17T16:58:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bc0ccab
- Parents:
- 920d0fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
r920d0fc ra1a101d 192 192 * @param fmt Format string (no traling newline). 193 193 */ 194 void log_ log_msg(log_t ctx, log_level_t level, const char *fmt, ...)194 void log_msg(log_t ctx, log_level_t level, const char *fmt, ...) 195 195 { 196 196 va_list args; 197 197 198 198 va_start(args, fmt); 199 log_ log_msgv(ctx, level, fmt, args);199 log_msgv(ctx, level, fmt, args); 200 200 va_end(args); 201 201 } … … 208 208 * @param fmt Format string (no trailing newline) 209 209 */ 210 void log_ log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args)210 void log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args) 211 211 { 212 212 assert(level < LVL_LIMIT);
Note:
See TracChangeset
for help on using the changeset viewer.