Issue 66 - In log.c (line 242) "telemetry" should be inserted ahead of "comment" in the header string to be written out.

This commit is contained in:
WB2OSZ 2017-06-11 22:45:22 -04:00
parent c9f846becb
commit 4f4583dc37
1 changed files with 1 additions and 1 deletions

2
log.c
View File

@ -239,7 +239,7 @@ void log_write (int chan, decode_aprs_t *A, packet_t pp, alevel_t alevel, retry_
// only if this will be the first line. // only if this will be the first line.
if ( ! already_there) { if ( ! already_there) {
fprintf (g_log_fp, "chan,utime,isotime,source,heard,level,error,dti,name,symbol,latitude,longitude,speed,course,altitude,frequency,offset,tone,system,status,comment\n"); fprintf (g_log_fp, "chan,utime,isotime,source,heard,level,error,dti,name,symbol,latitude,longitude,speed,course,altitude,frequency,offset,tone,system,status,telemetry,comment\n");
} }
} }