diff options
author | MaZderMind | 2016-12-17 14:12:56 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-17 14:12:56 +0100 |
commit | e7b0c27b54cdbcf248db191bcd34d5b8b4de2e99 (patch) | |
tree | 1b3f3bc798f52eef8fd291df05d1b3a2dc5ce198 | |
parent | f4b2cb58b2e62e365103cbcffc3d8c2999b3f300 (diff) |
improve log formatting
-rw-r--r-- | command/download.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/command/download.php b/command/download.php index c9fc5cd..4018a9a 100644 --- a/command/download.php +++ b/command/download.php @@ -119,13 +119,14 @@ function download($what, $conference, $url, $cache) if(!do_download($url, $cache)) { stderr( - '!! download %s for conference %s from %s to %s failed miserably !!', + ' !! download %s for conference %s from %s to %s failed miserably !!', $what, $conference->getSlug(), $url, $cache ); } + return true; } function do_download($url, $cache) |