Ignore:
File:
1 edited

Legend:

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

    rebcb05a rfc51296  
    8484 *                      if verbosity is less than or equal to current
    8585 *                      reporting level.
    86  * @param fmt           Format string (no traling newline).
     86 * @param fmt           Format string
    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 (no trailing newline)
     102 * @param fmt           Format string
    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);
    116115                fflush(log_stream);
    117116
Note: See TracChangeset for help on using the changeset viewer.