Modifying post_max_size log message, a=chris

Chris Pollett [2013-04-12 21:Apr:th]
Modifying post_max_size log message, a=chris
Filename
bin/fetcher.php
diff --git a/bin/fetcher.php b/bin/fetcher.php
index 0568d5fc5..980275867 100755
--- a/bin/fetcher.php
+++ b/bin/fetcher.php
@@ -2213,11 +2213,13 @@ class Fetcher implements CrawlConstants
                 }
                 if(isset($info[self::POST_MAX_SIZE]) &&
                     $this->post_max_size != $info[self::POST_MAX_SIZE]) {
-                    crawlLog("post_max_size has changed was ".
-                        "{$this->post_max_size}. Now is ".
-                        $info[self::POST_MAX_SIZE].".");
                     if(!defined('FORCE_SMALL')) {
+                        crawlLog("post_max_size has changed was ".
+                            "{$this->post_max_size}. Now is ".
+                            $info[self::POST_MAX_SIZE].".");
                         $this->post_max_size = $info[self::POST_MAX_SIZE];
+                    } else {
+                        crawlLog("...Using Force Small Rule on Server Posting");
                     }
                     if($max_len > $this->post_max_size) {
                         crawlLog("Restarting upload...");
ViewGit