summaryrefslogtreecommitdiff
path: root/code/core/log.h
blob: 57fb21bbcd0c95e76b06ddd51015843f1c186b59 (plain)
1
2
3
4
5
6
7
#ifndef LOG_H
#define LOG_H

#define WARN(str) fprintf(stderr, "WARN at " __FILE__ ":%d: " str "\n", __LINE__, str);
#define DIE(str) { fprintf(stderr, "FATAL at " __FILE__ ":%d: " str "\n", __LINE__, str); exit(-1); }

#endif
contact: Jan Huwald // Impressum