Skip to content
Extraits de code Groupes Projets
Valider 7cee813a rédigé par Benaka Moorthi's avatar Benaka Moorthi
Parcourir les fichiers

Display non-truncated errors in travis output for proxy archive cron script.

parent 000d3d42
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -587,7 +587,11 @@ class CronArchive
private function logError($m)
{
$this->errors[] = substr($m, 0, self::TRUNCATE_ERROR_MESSAGE_SUMMARY);
if (!defined('PIWIK_ARCHIVE_NO_TRUNCATE')) {
$m = substr($m, 0, self::TRUNCATE_ERROR_MESSAGE_SUMMARY);
}
$this->errors[] = $m;
$this->log("ERROR: $m");
}
......
<?php
define('PIWIK_MODE_ARCHIVE', true);
define('PIWIK_ARCHIVE_NO_TRUNCATE', true);
// make sure the test environment is loaded
require_once realpath(dirname(__FILE__)) . '/../../../core/EventDispatcher.php';
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter