File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public static BranchCommit FindCommitBranchWasBranchedFrom([NotNull] this Branch
45
45
throw new ArgumentNullException ( "branch" ) ;
46
46
}
47
47
48
- using ( Logger . IndentLog ( "Finding branch source" ) )
48
+ using ( Logger . IndentLog ( string . Format ( "Finding branch source of '{0}'" , branch . FriendlyName ) ) )
49
49
{
50
50
if ( branch . Tip == null )
51
51
{
@@ -77,7 +77,7 @@ public static BranchCommit FindCommitBranchWasBranchedFrom([NotNull] this Branch
77
77
/// </summary>
78
78
public static Commit FindMergeBase ( this Branch branch , Branch otherBranch , IRepository repository )
79
79
{
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 ) ) )
81
81
{
82
82
// Otherbranch tip is a forward merge
83
83
var commitToFindCommonBase = otherBranch . Tip ;
You can’t perform that action at this time.
0 commit comments