wip: logging

This commit is contained in:
2023-08-07 12:05:06 +04:00
parent b02a5d2873
commit 78c202a9d6
2 changed files with 20 additions and 15 deletions

6
inc/Logger.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include "cstdio"
#define write_log(format,args...) do { \
printf(format, ## args); \
} while(0)