You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quant_log('Quant: Skipping !type !url based on logs. To force reseeding, disable the "Check logs before seeding" configuration option or truncate the {quant_log} database table.', array('!type' => $context['type'], '!url' => $url));
465
+
quant_log('Quant: Skipping !type !path based on logs. To force reseeding, disable the "Check logs before seeding" configuration option or truncate the quant_log database table.', array('!type' => $context['type'], '!path' => '/' . $path));
@@ -699,7 +699,8 @@ function quant_seed_file($url, $context = array()) {
699
699
700
700
// Skip based on log data.
701
701
if (quant_log_skip_seed($url, $context)) {
702
-
quant_log('Quant: Skipping file !url based on logs. To force reseeding, disable the "Check logs before seeding" configuration option or truncate the {quant_log} database table.', array('!type' => $context['type'], '!url' => $url));
702
+
$path = parse_url($url, PHP_URL_PATH);
703
+
quant_log('Quant: Skipping !type !path based on logs. To force reseeding, disable the "Check logs before seeding" configuration option or truncate the quant_log database table.', array('!type' => $context['type'], '!path' => $path));
0 commit comments