Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/io/log.h

    r91db0280 re0c836e8  
    3939#include <io/verify.h>
    4040
    41 #include <abi/log.h>
     41/** Log message level. */
     42typedef enum {
     43        /** Fatal error, program is not able to recover at all. */
     44        LVL_FATAL,
     45        /** Serious error but the program can recover from it. */
     46        LVL_ERROR,
     47        /** Easily recoverable problem. */
     48        LVL_WARN,
     49        /** Information message that ought to be printed by default. */
     50        LVL_NOTE,
     51        /** Debugging purpose message. */
     52        LVL_DEBUG,
     53        /** More detailed debugging message. */
     54        LVL_DEBUG2,
     55       
     56        /** For checking range of values */
     57        LVL_LIMIT
     58} log_level_t;
    4259
    4360/** Log itself (logging target). */
Note: See TracChangeset for help on using the changeset viewer.