|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of LogEntry in com.atlassian.bamboo.build |
|---|
| Classes in com.atlassian.bamboo.build that implement LogEntry | |
|---|---|
class |
BuildOutputLogEntry
|
class |
CommandLogEntry
|
class |
ErrorLogEntry
|
class |
SimpleLogEntry
Simple POJO for representing build build events. |
| Methods in com.atlassian.bamboo.build that return types with arguments of type LogEntry | |
|---|---|
java.util.List<LogEntry> |
ViewBuildLogs.getBuildLogs()
|
| Method parameters in com.atlassian.bamboo.build with type arguments of type LogEntry | |
|---|---|
void |
ViewBuildLogs.setBuildLogs(java.util.List<LogEntry> buildLogs)
|
| Uses of LogEntry in com.atlassian.bamboo.build.logger |
|---|
| Methods in com.atlassian.bamboo.build.logger that return LogEntry | |
|---|---|
static LogEntry |
BuildLogUtils.convertToLogEntry(java.lang.String fileEntry)
Converts a line from a file back into a LogEntry object |
static LogEntry |
BuildLogUtils.convertToLogEntry(java.lang.String fileEntry,
java.text.SimpleDateFormat dateFormat)
Deprecated. use $ BuildLogUtils.convertToLogEntry(String) |
LogEntry |
BuildLogFileAccessor.nextLogEntry()
Requires file to be opened for iteration |
LogEntry |
BuildLogFileAccessor.searchFileForEntry(java.lang.String textToSearchFor,
boolean searchInErrorMessages)
Looks incrementally through the file to see if the specified text exists |
LogEntry |
BuildLogFileAccessor.searchFileForEntry(java.lang.String textToSearchFor,
int lastNLines,
boolean searchInErrorMessages)
Searchers for particular text within the last n lines of a file (eg search within the last 10 lines for a success message) |
| Methods in com.atlassian.bamboo.build.logger that return types with arguments of type LogEntry | |
|---|---|
java.util.List<LogEntry> |
SimpleBuildLogger.getBuildLog()
|
java.util.List<LogEntry> |
BuildLogger.getBuildLog()
Provide the latest build details (last 100 lines of logs). |
java.util.List<LogEntry> |
NullBuildLogger.getBuildLog()
|
java.util.List<LogEntry> |
BuildLoggerImpl.getBuildLog()
|
java.util.List<LogEntry> |
SimpleBuildLogger.getErrorLog()
|
java.util.List<LogEntry> |
BuildLogger.getErrorLog()
Provide the latest error logs. |
java.util.List<LogEntry> |
NullBuildLogger.getErrorLog()
|
java.util.List<LogEntry> |
BuildLoggerImpl.getErrorLog()
|
java.util.List<LogEntry> |
SimpleBuildLogger.getLastNLogEntries(int n)
|
java.util.List<LogEntry> |
BuildLogger.getLastNLogEntries(int n)
Provide the latest build details (last n lines of logs). |
java.util.List<LogEntry> |
NullBuildLogger.getLastNLogEntries(int n)
|
java.util.List<LogEntry> |
BuildLoggerImpl.getLastNLogEntries(int n)
|
java.util.List<LogEntry> |
BuildLogFileAccessor.getLastNLogs(int numLogs)
Retrives a List of the last N logs. |
java.util.List<LogEntry> |
BuildLogFileAccessor.getLastNLogsOfType(int numLogs,
java.util.Collection<java.lang.Class> types)
|
| Methods in com.atlassian.bamboo.build.logger with parameters of type LogEntry | |
|---|---|
java.lang.String |
SimpleBuildLogger.addBuildLogEntry(LogEntry logEntry)
|
java.lang.String |
BuildLogger.addBuildLogEntry(LogEntry logEntry)
Add a new build log entry. |
java.lang.String |
NullBuildLogger.addBuildLogEntry(LogEntry logEntry)
|
java.lang.String |
BuildLoggerImpl.addBuildLogEntry(LogEntry logEntry)
|
java.lang.String |
SimpleBuildLogger.addErrorLogEntry(LogEntry logEntry)
|
java.lang.String |
BuildLogger.addErrorLogEntry(LogEntry logEntry)
Add a new build error log entry. |
java.lang.String |
NullBuildLogger.addErrorLogEntry(LogEntry logEntry)
|
java.lang.String |
BuildLoggerImpl.addErrorLogEntry(LogEntry logEntry)
|
static java.lang.String |
BuildLogUtils.convertToLogFileEntry(LogEntry logEntry)
Convert the specified LogEntry object into a string to be written to a log file |
void |
LogInterceptorStack.intercept(LogEntry logEntry)
|
void |
LogInterceptorAdapter.intercept(LogEntry logEntry)
|
void |
LogInterceptor.intercept(LogEntry logEntry)
Method invoked whenever a new log entry is logged |
void |
LogInterceptorStack.interceptError(LogEntry logEntry)
|
void |
LogInterceptorAdapter.interceptError(LogEntry logEntry)
|
void |
LogInterceptor.interceptError(LogEntry logEntry)
Method invoked whenever a new error log entry is logged |
void |
BuildLogFileWriter.writeLog(LogEntry logEntry)
Writes one line of logs to the log file |
| Uses of LogEntry in com.atlassian.bamboo.build.logger.interceptors |
|---|
| Methods in com.atlassian.bamboo.build.logger.interceptors that return types with arguments of type LogEntry | |
|---|---|
java.lang.Iterable<LogEntry> |
LogMemorisingInterceptor.getLogEntries()
|
| Methods in com.atlassian.bamboo.build.logger.interceptors with parameters of type LogEntry | |
|---|---|
void |
LogMemorisingInterceptor.intercept(LogEntry logEntry)
|
void |
ErrorMemorisingInterceptor.intercept(LogEntry logEntry)
|
void |
ContentMatchingInterceptor.intercept(LogEntry logEntry)
|
void |
LogMemorisingInterceptor.interceptError(LogEntry logEntry)
|
void |
ErrorMemorisingInterceptor.interceptError(LogEntry logEntry)
|
void |
ContentMatchingInterceptor.interceptError(LogEntry logEntry)
|
protected boolean |
StringMatchingInterceptor.matches(LogEntry logEntry)
|
protected abstract boolean |
ContentMatchingInterceptor.matches(LogEntry logEntry)
|
| Uses of LogEntry in com.atlassian.bamboo.builder |
|---|
| Method parameters in com.atlassian.bamboo.builder with type arguments of type LogEntry | |
|---|---|
static java.util.List<java.lang.String> |
MavenLogHelper.parseErrorOutput(java.lang.Iterable<LogEntry> logsToParse)
|
| Uses of LogEntry in com.atlassian.bamboo.event |
|---|
| Methods in com.atlassian.bamboo.event that return types with arguments of type LogEntry | |
|---|---|
java.util.List<LogEntry> |
BuildHungEvent.getBuildLogs()
|
| Constructor parameters in com.atlassian.bamboo.event with type arguments of type LogEntry | |
|---|---|
BuildHungEvent(java.lang.Object source,
java.lang.String buildKey,
int buildNumber,
CurrentlyBuilding currentlyBuilding,
java.util.List<LogEntry> buildLogs)
|
|
| Uses of LogEntry in com.atlassian.bamboo.v2.build.agent |
|---|
| Methods in com.atlassian.bamboo.v2.build.agent that return types with arguments of type LogEntry | |
|---|---|
static Pair<LogEntry,java.lang.Byte> |
LogMessageBatchConverter.readLogEntry(javax.jms.BytesMessage jmsMessage)
|
| Uses of LogEntry in com.atlassian.bamboo.v2.build.agent.messages |
|---|
| Fields in com.atlassian.bamboo.v2.build.agent.messages declared as LogEntry | |
|---|---|
protected LogEntry |
AbstractAddLogEntry.logEntry
|
| Methods in com.atlassian.bamboo.v2.build.agent.messages that return LogEntry | |
|---|---|
LogEntry |
AbstractAddLogEntry.getLogEntry()
|
| Constructors in com.atlassian.bamboo.v2.build.agent.messages with parameters of type LogEntry | |
|---|---|
AbstractAddLogEntry(LoggerId<? extends java.io.Serializable> loggerId,
LogEntry logEntry)
|
|
AbstractAddLogEntry(java.lang.String buildPlanKey,
LogEntry logEntry)
|
|
AddBuildLogEntry(LoggerId<? extends java.io.Serializable> loggerId,
LogEntry logEntry)
|
|
AddBuildLogEntry(java.lang.String buildPlanKey,
LogEntry logEntry)
Deprecated. |
|
AddErrorLogEntry(LoggerId<? extends java.io.Serializable> loggerId,
LogEntry logEntry)
|
|
AddErrorLogEntry(java.lang.String buildPlanKey,
LogEntry logEntry)
Deprecated. |
|
| Uses of LogEntry in com.atlassian.bamboo.v2.build.agent.remote |
|---|
| Methods in com.atlassian.bamboo.v2.build.agent.remote with parameters of type LogEntry | |
|---|---|
java.lang.String |
RemoteBuildLogger.addBuildLogEntry(LogEntry logEntry)
|
java.lang.String |
RemoteBuildLogger.addErrorLogEntry(LogEntry logEntry)
|
| Uses of LogEntry in com.atlassian.bamboo.ww2.actions |
|---|
| Methods in com.atlassian.bamboo.ww2.actions that return types with arguments of type LogEntry | |
|---|---|
java.util.List<LogEntry> |
ViewActivityLog.getActivityLog()
|
| Uses of LogEntry in com.atlassian.bamboo.ww2.actions.chains |
|---|
| Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type LogEntry | |
|---|---|
java.util.List<LogEntry> |
ViewChainLogs.retrieveBuildLogs(BuildResultsSummary buildResultsSummary)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||