From dc8915f5991adad17e5a4a70c535b75eae6be6f4 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 8 Sep 2008 13:09:38 +0000 Subject: [PATCH] 2008-09-08 Tatsuhiro Tsujikawa Added the message that the time is in local time zone. * src/RequestGroup.cc --- ChangeLog | 5 +++++ src/RequestGroup.cc | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d83b9897..484a5935 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-08 Tatsuhiro Tsujikawa + + Added the message that the time is in local time zone. + * src/RequestGroup.cc + 2008-09-08 Tatsuhiro Tsujikawa Implemented the ability to get timestamp from remote FTP server using diff --git a/src/RequestGroup.cc b/src/RequestGroup.cc index 81a33c00..f6662346 100644 --- a/src/RequestGroup.cc +++ b/src/RequestGroup.cc @@ -1030,7 +1030,8 @@ void RequestGroup::applyLastModifiedTimeToLocalFiles() { if(!_pieceStorage.isNull() && _lastModifiedTime.good()) { time_t t = _lastModifiedTime.getTime(); - _logger->info("Applying Last-Modified time: %s", ctime(&t)); + _logger->info("Applying Last-Modified time: %s in local time zone", + ctime(&t)); size_t n = _pieceStorage->getDiskAdaptor()->utime(Time(), _lastModifiedTime); _logger->info("Last-Modified attrs of %zu files were updated.", n);