listener/DefaultLogger.php
\DefaultLogger
Writes a build event to the console.
Currently, it only writes which targets are being executed, and any messages that get logged.
- Implements
- \StreamRequiredBuildLogger
- Children
- \HtmlColorLogger
- \NoBannerLogger
- \AnsiColorLogger
- See
- \BuildEvent
- Author
- Andreas Aderhold
- Copyright
- 2001,2002 THYRELL. All rights reserved
- Version
- $Revision: 912 $ $Date: 2010-10-12 03:08:31 +0200 (Tue, 12 Oct 2010) $
Constants
Properties

$msgOutputLevel= 'Project::MSG_ERR'
The message output level that should be used. The default is <code>Project::MSG_VERBOSE</code>.
@var int
Project::MSG_ERRDetails- Type
Methods

buildFinished(
\BuildEvent $event
)
:
voidPrints whether the build succeeded or failed, and any errors that occured during the build. Also outputs the total build-time.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |

buildStarted(
\BuildEvent $event
)
:
voidSets the start-time when the build started. Used for calculating the build-time.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |
- Access
- public

formatTime(
$micros
)
:
voidFormats a time micro integer to human readable format.
@param integer The time stamp
| Name | Type | Description |
|---|---|---|
| $micros |
- Access
- private

getBuildFailedMessage(
)
:
stringGet the message to return when a build failed.
| Type | Description |
|---|---|
| string | The classic "BUILD FAILED" |

getBuildSuccessfulMessage(
)
:
stringGet the message to return when a build succeeded.
| Type | Description |
|---|---|
| string | The classic "BUILD FINISHED" |

messageLogged(
$event
)
:
voidPrint a message to the stdout.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event |
- Access
- public
- See
- \BuildEvent::getMessage()

printMessage(
string $message, resource $stream, int $priority
)
:
voidPrints a message to console.
| Name | Type | Description |
|---|---|---|
| $message | string | The message to print. Should not be |
| $stream | resource | The stream to use for message printing. |
| $priority | int | The priority of the message. (Ignored in this implementation.) |

setMessageOutputLevel(
int $level
)
:
voidSet the msgOutputLevel this logger is to respond to.
Only messages with a message level lower than or equal to the given level are output to the log.
<
p> Constants for the message levels are in Project.php. The order of the levels, from least to most verbose, is:
- Project::MSG_ERR
- Project::MSG_WARN
- Project::MSG_INFO
- Project::MSG_VERBOSE
- Project::MSG_DEBUG
The default message level for DefaultLogger is Project::MSG_ERR.
| Name | Type | Description |
|---|---|---|
| $level | int | The logging level for the logger. |
- See
- \BuildLogger#setMessageOutputLevel()

targetFinished(
\BuildEvent $event
)
:
voidFired when a target has finished. We don't need specific action on this event. So the methods are empty.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |

targetStarted(
\BuildEvent $event
)
:
voidPrints the current target name
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |
- Access
- public
- See
- \BuildEvent::getTarget()

taskFinished(
$event
)
:
voidFired when a task has finished. We don't need specific action on this event. So the methods are empty.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event |
- Access
- public
- See
- \BuildEvent::getException()

taskStarted(
\BuildEvent $event
)
:
voidFired when a task is started. We don't need specific action on this event. So the methods are empty.
@param object The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |
- Access
- public
- See
- \BuildEvent::getTask()