Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion core/src/main/java/hudson/model/Run.java
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,9 @@ public Collection<Fingerprint> getBuildFingerprints() {
/**
* Returns the log file.
* @return The file may reference both uncompressed or compressed logs
*/
* @deprecated Assumes file-based storage of the log. Use other methods giving various kinds of streams.
*/
@Deprecated
public @Nonnull File getLogFile() {
File rawF = new File(getRootDir(), "log");
if (rawF.isFile()) {
Expand Down