Issue #3452630 by SandeepMahlawat, pooja_sharma, joachim, mondrake: HtmlOutputLogger outputs surplus newline
parent
9fc1bc9ac5
commit
fc948a689c
|
@ -79,7 +79,7 @@ final class HtmlOutputLogger {
|
|||
* Logs a link to a generated HTML page.
|
||||
*
|
||||
* @param string $logEntry
|
||||
* A link to a generated HTML page.
|
||||
* A link to a generated HTML page, should not contain a trailing newline.
|
||||
*
|
||||
* @throws \RuntimeException
|
||||
*/
|
||||
|
|
|
@ -118,7 +118,7 @@ trait BrowserHtmlDebugTrait {
|
|||
// Do not use the file_url_generator service as the module_handler service
|
||||
// might not be available.
|
||||
$uri = $this->htmlOutputBaseUrl . '/sites/simpletest/browser_output/' . $html_output_filename;
|
||||
HtmlOutputLogger::log($uri . "\n");
|
||||
HtmlOutputLogger::log($uri);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue