Valider 4ff91e14 rédigé par marcimat's avatar marcimat
Parcourir les fichiers

Warning-- sur un log

parent ea69c62d
Chargement en cours
Chargement en cours
Chargement en cours
Chargement en cours
+14 −3
Numéro de ligne d'origine Numéro de ligne de diff Ligne de diff
@@ -205,9 +205,20 @@ function cache_cool_process($force=false){
				fastcgi_finish_request();
		}

		while (is_array($GLOBALS['cache_cool_queue'])
			AND $args = array_shift($GLOBALS['cache_cool_queue'])){
			spip_log("calcul en fin de hit public_produire_page($args[0],$args[1],$args[2],$args[3],$args[4],$args[5],$args[6],$args[7],$args[8],$args[9])",'cachecool'._LOG_DEBUG);
		while (
			is_array($GLOBALS['cache_cool_queue'])
			AND $args = array_shift($GLOBALS['cache_cool_queue'])
		) {
			spip_log(
				"calcul en fin de hit public_produire_page($args[0]," 
				. (is_array($args[1]) ? 'Array' : (string) $args[1])
				. ",$args[2],$args[3],"
				. (is_array($args[4]) ? 'Array' : (string) $args[4])
				. ","
				. (is_array($args[5]) ? 'Array' : (string) $args[5])
				. ",$args[6],$args[7],$args[8],$args[9])",
				'cachecool'._LOG_DEBUG
			);
			public_produire_page($args[0],$args[1],$args[2],$args[3],$args[4],$args[5],$args[6],$args[7],$args[8],$args[9]);
		}
	}