summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 14:56:04 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 14:56:04 +0400
commit2191eb7aab7686df01bee88ed18068897ce2912f (patch)
tree0e62557d878bdab8c527fed29939c89bfbdd6698 /update.php
parent764555ff8af2ca8f7aad5e882bbf837c6e65cbc7 (diff)
update.php: add support for output logging
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/update.php b/update.php
index a92b125e4..9862e1ff2 100755
--- a/update.php
+++ b/update.php
@@ -29,6 +29,7 @@
"task:",
"cleanup-tags",
"quiet",
+ "log:",
"indexes",
"convert-filters",
"force-update",
@@ -60,7 +61,6 @@
exit;
}
-
if (count($options) == 0 || isset($options["help"]) ) {
print "Tiny Tiny RSS data update script.\n\n";
print "Options:\n";
@@ -70,6 +70,7 @@
print " --task N - create lockfile using this task id\n";
print " --cleanup-tags - perform tags table maintenance\n";
print " --quiet - don't show messages\n";
+ print " --log FILE - log messages to FILE\n";
print " --indexes - recreate missing schema indexes\n";
print " --convert-filters - convert type1 filters to type2\n";
print " --force-update - force update of all feeds\n";
@@ -84,6 +85,11 @@
return;
}
+ if (isset($options["log"])) {
+ _debug("Logging to " . $options["log"]);
+ define('LOGFILE', $options["log"]);
+ }
+
define('QUIET', isset($options['quiet']));
if (!isset($options["daemon"])) {