wb2osz / direwolf

Dire Wolf is a software "soundcard" AX.25 packet modem/TNC and APRS encoder/decoder. It can be used stand-alone to observe APRS traffic, as a tracker, digipeater, APRStt gateway, or Internet Gateway (IGate). For more information, look at the bottom 1/4 of this page and in https://github.com/wb2osz/direwolf/blob/dev/doc/README.md
GNU General Public License v2.0
1.51k stars 300 forks source link

I'll be the one! #473

Open Silent-Gloves opened 1 year ago

Silent-Gloves commented 1 year ago

https://github.com/wb2osz/direwolf/blob/f9cf42b2918f4c0bf245dff03945b3e1407f7f28/src/log.c#L237

I'm writing some Direwolf companion software called Shadowcat for my own purposes, and Shadowcat likes to sneakily follow Direwolf around looking at his logs. It's quite inconvenient that Direwolf wants to flip logs at 00:00UTC.

In my install, at: https://github.com/wb2osz/direwolf/blob/master/src/log.c#L226 I've updated... (void)gmtime_r (&now, &tm); to (void)localtime_r (&now, &tm); ...which appears to be working fine; however, it would be nice if it were a configurable option in direwolf.conf.

Obviously not a pressing issue, just a nice to have.