summaryrefslogtreecommitdiffstats
path: root/loader2/log.h
blob: 4a6876f3530ccc7898fb419d6e41da1d82b97e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _LOG_H_
#define _LOG_H_

#include <stdio.h>

void logMessage(const char * s, ...) __attribute__ ((format (printf, 1, 2)));;
void openLog(int useLocal);
void closeLog(void);
void setLogLevel(int level);

#endif /* _LOG_H_ */