From 0d77fa5769ca4280e711bb2eff82f8496f197f51 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Thu, 14 Apr 2016 08:25:09 +0900 Subject: [PATCH] Issue #2688615 by rballou, dawehner: Add the file to Error::formatBacktrace() --- core/lib/Drupal/Core/Utility/Error.php | 6 +++++- core/tests/Drupal/Tests/Core/Utility/ErrorTest.php | 10 +++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/core/lib/Drupal/Core/Utility/Error.php b/core/lib/Drupal/Core/Utility/Error.php index aca31fae837f..4d12a8f1d5c8 100644 --- a/core/lib/Drupal/Core/Utility/Error.php +++ b/core/lib/Drupal/Core/Utility/Error.php @@ -177,7 +177,11 @@ public static function formatBacktrace(array $backtrace) { $line = ''; if (isset($trace['line'])) { - $line = " (Line: {$trace['line']})"; + $line = " (Line: {$trace['line']}"; + if (isset($trace['file'])) { + $line .= ':' . $trace['file']; + } + $line .= ")"; } $return .= $call['function'] . '(' . implode(', ', $call['args']) . ")$line\n"; diff --git a/core/tests/Drupal/Tests/Core/Utility/ErrorTest.php b/core/tests/Drupal/Tests/Core/Utility/ErrorTest.php index 40c2a58878f8..8ce4bf7cce66 100644 --- a/core/tests/Drupal/Tests/Core/Utility/ErrorTest.php +++ b/core/tests/Drupal/Tests/Core/Utility/ErrorTest.php @@ -84,28 +84,28 @@ public function providerTestFormatBacktrace() { $data = array(); // Test with no function, main should be in the backtrace. - $data[] = array(array($this->createBacktraceItem(NULL, NULL)), "main() (Line: 10)\n"); + $data[] = array(array($this->createBacktraceItem(NULL, NULL)), "main() (Line: 10:test_file)\n"); $base = array($this->createBacktraceItem()); - $data[] = array($base, "test_function() (Line: 10)\n"); + $data[] = array($base, "test_function() (Line: 10:test_file)\n"); // Add a second item. $second_item = $base; $second_item[] = $this->createBacktraceItem('test_function_2'); - $data[] = array($second_item, "test_function() (Line: 10)\ntest_function_2() (Line: 10)\n"); + $data[] = array($second_item, "test_function() (Line: 10:test_file)\ntest_function_2() (Line: 10:test_file)\n"); // Add a second item, with a class. $second_item_class = $base; $second_item_class[] = $this->createBacktraceItem('test_function_2', 'TestClass'); - $data[] = array($second_item_class, "test_function() (Line: 10)\nTestClass->test_function_2() (Line: 10)\n"); + $data[] = array($second_item_class, "test_function() (Line: 10:test_file)\nTestClass->test_function_2() (Line: 10:test_file)\n"); // Add a second item, with a class. $second_item_args = $base; $second_item_args[] = $this->createBacktraceItem('test_function_2', NULL, array('string', 10, new \stdClass())); - $data[] = array($second_item_args, "test_function() (Line: 10)\ntest_function_2('string', 10, Object) (Line: 10)\n"); + $data[] = array($second_item_args, "test_function() (Line: 10:test_file)\ntest_function_2('string', 10, Object) (Line: 10:test_file)\n"); return $data; } -- GitLab