aboutsummaryrefslogtreecommitdiff
path: root/src/or/geoip.c
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2011-01-25 13:16:28 +0100
committerNick Mathewson <nickm@torproject.org>2011-01-25 15:54:51 -0500
commit7a446e6754b21eae1b0cfe3b0cf737ac2be964a9 (patch)
tree07378139d64354b4a798c6f6153dc1c3ab6d048d /src/or/geoip.c
parent68f8ca357fa98e7a2ed4ab45e4b982ea2ca370c8 (diff)
downloadtor-7a446e6754b21eae1b0cfe3b0cf737ac2be964a9.tar
tor-7a446e6754b21eae1b0cfe3b0cf737ac2be964a9.tar.gz
Tell which geoip file we're parsing
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r--src/or/geoip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c
index d4e279f53..e5694b961 100644
--- a/src/or/geoip.c
+++ b/src/or/geoip.c
@@ -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)