aboutsummaryrefslogtreecommitdiff
path: root/command
diff options
context:
space:
mode:
authorMaZderMind2016-12-17 14:12:56 +0100
committerMaZderMind2016-12-17 14:12:56 +0100
commite7b0c27b54cdbcf248db191bcd34d5b8b4de2e99 (patch)
tree1b3f3bc798f52eef8fd291df05d1b3a2dc5ce198 /command
parentf4b2cb58b2e62e365103cbcffc3d8c2999b3f300 (diff)
improve log formatting
Diffstat (limited to 'command')
-rw-r--r--command/download.php3
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)