]> git.mxchange.org Git - hub.git/commitdiff
Correct logger name
authorRoland Haeder <roland@mxchange.org>
Mon, 15 Dec 2014 18:19:36 +0000 (19:19 +0100)
committerRoland Haeder <roland@mxchange.org>
Mon, 15 Dec 2014 18:19:36 +0000 (19:19 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php

index 6e51a4c6768ec156127df5aa928944d020419a1b..7063492b0bd2c96f037c6cbaa84c3e00fa1d23fa 100644 (file)
@@ -91,12 +91,12 @@ class CrawlerUploadedListUrlSource extends BaseUrlSource implements UrlSource, R
                $directoryEntry = $this->getDirectoryInstance()->readDirectoryExcept(array_merge(array('.htaccess', '.', '..'), $this->csvFileImported));
 
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOURCE[' . __METHOD__ . ':' . __LINE__ . '] directoryEntry(' . strlen($directoryEntry) . ')=' . $directoryEntry);
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CRAWLER-SOURCE[' . __METHOD__ . ':' . __LINE__ . '] directoryEntry(' . strlen($directoryEntry) . ')=' . $directoryEntry);
 
                // Is it empty or wrong file extension?
                if ((empty($directoryEntry)) || (substr($directoryEntry, -4, 4) != '.csv')) {
                        // Skip further processing
-                       /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOURCE[' . __METHOD__ . ':' . __LINE__ . '] directoryEntry(' . strlen($directoryEntry) . ')=' . $directoryEntry . ' - SKIPPED!');
+                       /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CRAWLER-SOURCE[' . __METHOD__ . ':' . __LINE__ . '] directoryEntry(' . strlen($directoryEntry) . ')=' . $directoryEntry . ' - SKIPPED!');
                        return FALSE;
                } // END - if