aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index d2556277..b9391d15 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -240,7 +240,13 @@ int query_host(queryctl)
struct hostrec *queryctl;
{
if (outlevel != O_SILENT)
- fprintf(stderr, "popclient: querying %s\n", queryctl->servername);
+ {
+ time_t now;
+
+ time(&now);
+ fprintf(stderr, "popclient: querying %s at %s",
+ queryctl->servername, ctime(&now));
+ }
switch (queryctl->protocol) {
case P_POP2:
return(doPOP2(queryctl));