Skip to content
This repository was archived by the owner on Jul 15, 2023. It is now read-only.

Commit 55acfcb

Browse files
author
J Wyman
authored
Merge pull request #707 from whoisj/v1.17/correct-trace
alm: correct pass args within `Trace` methods.
2 parents 629d21f + 7cda2b3 commit 55acfcb

File tree

1 file changed

+2
-2
lines changed
  • Microsoft.Alm.Authentication/Src/Git

1 file changed

+2
-2
lines changed

Microsoft.Alm.Authentication/Src/Git/Trace.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ public void WriteException(
136136
if (exception is null)
137137
return;
138138

139-
WriteLine($"! error: '{exception.Message}'.");
139+
WriteLine($"! error: '{exception.Message}'.", filePath, lineNumber, memberName);
140140

141141
while ((exception = exception.InnerException) != null)
142142
{
143-
WriteLine($" > '{exception.Message}'.");
143+
WriteLine($" > '{exception.Message}'.", filePath, lineNumber, memberName);
144144
}
145145
}
146146

0 commit comments

Comments
 (0)