Changeset a1a101d in mainline for uspace/lib/c/generic/io/log.c


Ignore:
Timestamp:
2012-08-17T16:58:51Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bc0ccab
Parents:
920d0fc
Message:

Get rid of log_log_msg()

All calls to log_msg(LVL_*) were rewritten to
log_msg(LOG_DEFAULT, LVL_*).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/log.c

    r920d0fc ra1a101d  
    192192 * @param fmt           Format string (no traling newline).
    193193 */
    194 void log_log_msg(log_t ctx, log_level_t level, const char *fmt, ...)
     194void log_msg(log_t ctx, log_level_t level, const char *fmt, ...)
    195195{
    196196        va_list args;
    197197
    198198        va_start(args, fmt);
    199         log_log_msgv(ctx, level, fmt, args);
     199        log_msgv(ctx, level, fmt, args);
    200200        va_end(args);
    201201}
     
    208208 * @param fmt           Format string (no trailing newline)
    209209 */
    210 void log_log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args)
     210void log_msgv(log_t ctx, log_level_t level, const char *fmt, va_list args)
    211211{
    212212        assert(level < LVL_LIMIT);
Note: See TracChangeset for help on using the changeset viewer.