]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Tell which geoip file we're parsing
authorSebastian Hahn <sebastian@torproject.org>
Tue, 25 Jan 2011 12:16:28 +0000 (13:16 +0100)
committerNick Mathewson <nickm@torproject.org>
Tue, 25 Jan 2011 20:54:51 +0000 (15:54 -0500)
changes/bug2432 [new file with mode: 0644]
src/or/geoip.c

diff --git a/changes/bug2432 b/changes/bug2432
new file mode 100644 (file)
index 0000000..407c56b
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor features:
+    - Provide a log message stating which geoip file we're parsing
+      instead of just stating that we're parsing the geoip file.
+      Implements ticket 2432.
+
index d4e279f5381115e3c5105ee9382296ddaa9a9cae..e5694b96187c15560c31b0c1cede75542a6bd2bf 100644 (file)
@@ -214,7 +214,7 @@ geoip_load_file(const char *filename, or_options_t *options)
     smartlist_free(geoip_entries);
   }
   geoip_entries = smartlist_create();
-  log_notice(LD_GENERAL, "Parsing GEOIP file.");
+  log_notice(LD_GENERAL, "Parsing GEOIP file %s.", filename);
   while (!feof(f)) {
     char buf[512];
     if (fgets(buf, (int)sizeof(buf), f) == NULL)