1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-24 00:12:24 +02:00

CI: Try to fix intermittent failures on e_parse::toImage()

Perhaps the first argument to `debug_backtrace()` should be `0` instead
of the default?
This commit is contained in:
Nick Liu
2021-11-23 16:30:30 -06:00
parent 6fb0d3f2bb
commit 31ea9bf787

View File

@@ -4333,7 +4333,7 @@ class e_parse
else
{
$log = e107::getLog();
$log->addDebug('Broken Image Path: ' . $legacyPath . "\n" . print_r(debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 2), true), false)->save('IMALAN_00');
$log->addDebug('Broken Image Path: ' . $legacyPath . "\n" . print_r(debug_backtrace(0, 2), true), false)->save('IMALAN_00');
e107::getDebug()->log('Broken Image Path: ' . $legacyPath);
}