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

Commit 8b8d52e

Browse files
author
J Wyman
authored
Merge pull request #708 from whoisj/correct-trace
alm: correct pass args within `Trace` methods.
2 parents c38397b + 962fc3f commit 8b8d52e

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
@@ -138,11 +138,11 @@ public void WriteException(
138138
if (exception is null)
139139
return;
140140

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

143143
while ((exception = exception.InnerException) != null)
144144
{
145-
WriteLine($" > '{exception.Message}'.");
145+
WriteLine($" > '{exception.Message}'.", filePath, lineNumber, memberName);
146146
}
147147
}
148148

0 commit comments

Comments
 (0)