Skip to content

Commit

Permalink
Remove warning about missing branch (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino authored Mar 27, 2022
1 parent d2187d9 commit fdde87d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private static String extractVcsBranch(File dotGit, Log log) throws IOException
String[] splitArr = revisionOrRef.ref.split("/");
return splitArr[splitArr.length - 1];
}
log.warn("Failed fetching git branch from git directory: " + dotGit);
log.debug("Failed fetching git branch from git directory: " + dotGit + ". Might be in detached head.");
return "";
}

Expand Down

0 comments on commit fdde87d

Please sign in to comment.