Skip to content

Commit ad3590d

Browse files
DanielRoseJakeGinnivan
authored andcommitted
More detail when logging.
1 parent c74114c commit ad3590d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitVersionCore/LibGitExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static BranchCommit FindCommitBranchWasBranchedFrom([NotNull] this Branch
4545
throw new ArgumentNullException("branch");
4646
}
4747

48-
using (Logger.IndentLog("Finding branch source"))
48+
using (Logger.IndentLog(string.Format("Finding branch source of '{0}'", branch.FriendlyName)))
4949
{
5050
if (branch.Tip == null)
5151
{
@@ -77,7 +77,7 @@ public static BranchCommit FindCommitBranchWasBranchedFrom([NotNull] this Branch
7777
/// </summary>
7878
public static Commit FindMergeBase(this Branch branch, Branch otherBranch, IRepository repository)
7979
{
80-
using (Logger.IndentLog(string.Format("Finding merge base between '{0}' and {1}.", branch.FriendlyName, otherBranch.FriendlyName)))
80+
using (Logger.IndentLog(string.Format("Finding merge base between '{0}' and '{1}'.", branch.FriendlyName, otherBranch.FriendlyName)))
8181
{
8282
// Otherbranch tip is a forward merge
8383
var commitToFindCommonBase = otherBranch.Tip;

0 commit comments

Comments
 (0)