#ifndef _DEBUG_H_
#define _DEBUG_H_

#include <stdint.h>

#define DEBUG_ERROR 0
#define DEBUG_WARN 1
#define DEBUG_INFO 2
#define DEBUG_FINE 3

void DEBUG( uint8_t level, char* msg, ... );
void DEBUG_level( uint8_t level );

#endif
