1
|
|
<?php
|
2
|
|
/**
|
3
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
4
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
5
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
6
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
7
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
8
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
9
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
10
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
11
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
12
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
13
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
14
|
|
*
|
15
|
|
* This software consists of voluntary contributions made by many individuals
|
16
|
|
* and is licensed under the LGPL. For more information please see
|
17
|
|
* <http://phing.info>.
|
18
|
|
*/
|
19
|
|
|
20
|
|
/**
|
21
|
|
* Extends DefaultLogger to strip out empty targets.
|
22
|
|
*
|
23
|
|
* @author Andreas Aderhold <andi@binarycloud.com>
|
24
|
|
* @copyright 2001,2002 THYRELL. All rights reserved
|
25
|
|
* @package phing.listener
|
26
|
|
*/
|
27
|
|
class NoBannerLogger extends DefaultLogger
|
28
|
|
{
|
29
|
|
private $targetName = null;
|
30
|
|
|
31
|
|
/**
|
32
|
|
* @param BuildEvent $event
|
33
|
|
*/
|
34
|
0
|
public function targetStarted(BuildEvent $event)
|
35
|
|
{
|
36
|
0
|
$target = $event->getTarget();
|
37
|
0
|
$this->targetName = $target->getName();
|
38
|
|
}
|
39
|
|
|
40
|
|
/**
|
41
|
|
* @param BuildEvent $event
|
42
|
|
*/
|
43
|
0
|
public function targetFinished(BuildEvent $event)
|
44
|
|
{
|
45
|
0
|
$this->targetName = null;
|
46
|
|
}
|
47
|
|
|
48
|
|
/**
|
49
|
|
* @param BuildEvent $event
|
50
|
|
*/
|
51
|
0
|
public function messageLogged(BuildEvent $event)
|
52
|
|
{
|
53
|
0
|
if (
|
54
|
0
|
$event->getPriority() > $this->msgOutputLevel
|
55
|
0
|
|| null === $event->getMessage()
|
56
|
0
|
|| trim($event->getMessage()) === ''
|
57
|
0
|
) {
|
58
|
0
|
return;
|
59
|
|
}
|
60
|
|
|
61
|
0
|
if ($this->targetName !== null) {
|
62
|
0
|
$msg = PHP_EOL . $event->getProject()->getName() . ' > ' . $this->targetName . ':' . PHP_EOL;
|
63
|
0
|
$this->printMessage($msg, $this->out, $event->getPriority());
|
64
|
0
|
$this->targetName = null;
|
65
|
|
}
|
66
|
|
|
67
|
0
|
parent::messageLogged($event);
|
68
|
|
}
|
69
|
|
}
|