Switch to LOG macro

This commit is contained in:
Ian Gulliver
2016-03-07 17:02:24 -08:00
parent 602c6f729b
commit b434b67dd8
12 changed files with 75 additions and 51 deletions

View File

@@ -6,7 +6,9 @@
uint8_t server_id[UUID_LEN];
char server_version[] = "https://github.com/flamingcowtv/adsb-tools#1";
static char log_module = 'X';
void server_init() {
uuid_gen(server_id);
log_write('X', server_id, "Server start");
LOG(server_id, "Server start");
}