Skip to content

Instantly share code, notes, and snippets.

@Moon93
Moon93 / logging.c
Last active August 2, 2016 13:48
Logging wrapper for printf. Uses shell commands to add some colours. Define loglevel in line 8 and output file in line 17 (replace stdout).
/**
* implements the logging functions
*/
#include "logging.h"
enum{Debug, Info, Warning, Error, Fatal, Off};
//define the loglevel here
int loglevel = Debug;