Changeset 749 for Whitix/branches

Show
Ignore:
Timestamp:
07/08/08 15:43:05 (5 months ago)
Author:
mwhitworth
Message:

Add log level defines.

Location:
Whitix/branches/fs/include
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/fs/include/config.h

    r559 r749  
    44#define CONFIG_ALL_SYMBOLS 
    55 
     6#define KERN_LOG_LEVEL          4 
     7 
    68#endif 
  • Whitix/branches/fs/include/print.h

    r596 r749  
    11#ifndef PRINT_H 
    22#define PRINT_H 
     3 
     4#include <config.h> 
     5 
     6#define KERN_CRITICAL   "<0>" 
     7#define KERN_ERROR              "<1>" 
     8#define KERN_WARNING    "<2>" 
     9#define KERN_INFO               "<3>" 
     10#define KERN_DEBUG              "<4>" 
    311 
    412void KePrint(char* message, ...);