Added log test binary

This commit is contained in:
Thulinma 2018-03-01 17:14:00 +01:00
parent dfb1f0ecf0
commit d9b0270528
2 changed files with 12 additions and 0 deletions

9
test/log.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <mist/util.h>
#include <unistd.h>
#include <iostream>
int main(int argc, char ** argv){
Util::logParser(0, 1, isatty(1));
return 0;
}