Remove display of queue runner log file (it no longer exists)

This commit is contained in:
Eelco Dolstra 2015-07-02 00:18:33 +02:00
parent e35b704d80
commit ae52fc7f61
2 changed files with 0 additions and 9 deletions

View file

@ -67,10 +67,6 @@ sub build_GET {
$c->stash->{available} = all { isValidPath($_->path) } $build->buildoutputs->all;
$c->stash->{drvAvailable} = isValidPath $build->drvpath;
if (!$build->finished && $build->busy) {
$c->stash->{logtext} = decode("utf-8", read_file($build->logfile, err_mode => 'quiet') // "");
}
if ($build->finished && $build->iscachedbuild) {
my $path = ($build->buildoutputs)[0]->path or die;
my $cachedBuildStep = findBuildStepByOutPath($self, $c, $path);

View file

@ -280,11 +280,6 @@
[% END %]
[% IF logtext %]
<h2>Log</h2>
<pre class="buildlog">[% HTML.escape(logtext) %]</pre>
[% END %]
</div>
[% IF isAggregate %]