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


Ignore:
Timestamp:
2011-04-07T21:38:17Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
033cbf82
Parents:
3acb285 (diff), ccca251 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    r3acb285 r8436590  
    8484 *                      if verbosity is less than or equal to current
    8585 *                      reporting level.
    86  * @param fmt           Format string
     86 * @param fmt           Format string (no traling newline).
    8787 */
    8888void log_msg(log_level_t level, const char *fmt, ...)
     
    100100 *                      if verbosity is less than or equal to current
    101101 *                      reporting level.
    102  * @param fmt           Format string
     102 * @param fmt           Format string (no trailing newline)
    103103 */
    104104void log_msgv(log_level_t level, const char *fmt, va_list args)
     
    113113                    log_level_names[level]);
    114114                vfprintf(log_stream, fmt, args);
     115                fputc('\n', log_stream);
    115116                fflush(log_stream);
    116117
Note: See TracChangeset for help on using the changeset viewer.