mirror of
https://github.com/owntracks/recorder.git
synced 2026-08-23 11:26:16 +00:00
log accessibility of TZDATADB on start
This commit is contained in:
+3
-1
@@ -1987,7 +1987,9 @@ int main(int argc, char **argv)
|
||||
|
||||
olog(LOG_INFO, "Using storage at %s with precision %d", STORAGEDIR, geohash_prec());
|
||||
#ifdef WITH_TZ
|
||||
olog(LOG_INFO, "TZDATADB is at %s", TZDATADB);
|
||||
olog(LOG_INFO, "TZDATADB is at %s: %s",
|
||||
TZDATADB,
|
||||
access(TZDATADB, F_OK|R_OK) == 0 ? "R_OK" : "ENOENT");
|
||||
#endif
|
||||
|
||||
while (run) {
|
||||
|
||||
Reference in New Issue
Block a user