You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The log message object is an item in the Log Messages Collection which provides access to the properties of a build log message. e.g. $Build.ErrorAndWarningMessages.First().Type$



NameDescriptionTypeUsage Example
ActionNameThe name of the action that the message is logged for.String$Stage.AgentName$"FinalBuilder"
ExpandedActionNameThe expanded name of the action that the message is logged for.String$Stage.Elapsed$"FinalBuilder($Workspace$)"
IdThe id of the message.Integer$Stage.Finished$123
LineThe message details as a line of text.String$Stage.HasWarnings$"FinalBuilder, FinalBuilder(), 123, ... , warning"
StageNameThe name of the stage that the message is logged for.String$Stage.IsError$"Build"
TextThe text of the message.String$Stage.IsFailure$"Message here"
TimeStampThe date and time this message was logged.DateTime$Stage.IsSpecial$"9/11/2018 10:44:54"
TypeThe type of message (information, warning or error).String$Stage.IsSuccessful$"Warning"



  • No labels