diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-09-25 21:55:03 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-09-25 21:55:03 +0000 |
commit | 9369c33a89a3ee0e8186d155c8ee52b1a7219eb3 (patch) | |
tree | b85142a1f8990b7b3138209b0218cadad7a3f2c7 /fetchmail.c | |
parent | e20b2d7f3647d1dbe186b06f7e689c530a6f8cd5 (diff) | |
download | fetchmail-9369c33a89a3ee0e8186d155c8ee52b1a7219eb3.tar.gz fetchmail-9369c33a89a3ee0e8186d155c8ee52b1a7219eb3.tar.bz2 fetchmail-9369c33a89a3ee0e8186d155c8ee52b1a7219eb3.zip |
When going to sleep, log for how long.
svn path=/branches/BRANCH_6-3/; revision=4910
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index 4657e913..38029b20 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -810,8 +810,8 @@ int main(int argc, char **argv) } if (outlevel > O_SILENT) - report(stdout, - GT_("sleeping at %s\n"), timestamp()); + report(stdout, + GT_("sleeping at %s for %d seconds\n"), timestamp(), run.poll_interval); /* * With this simple hack, we make it possible for a foreground |