You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These were available in code lens style "click to fix" but were not
applied by the CLI tools. It was slow, but not horrible.
Also silence two annoying suggestions around comments and naming.
@@ -161,7 +159,7 @@ public void Log(PsesLogLevel logLevel, string message)
161
159
/// Convenience method for logging exceptions.
162
160
/// </summary>
163
161
/// <param name="message">The human-directed message to accompany the exception.</param>
164
-
/// <param name="exception">The actual execption to log.</param>
162
+
/// <param name="exception">The actual exception to log.</param>
165
163
/// <param name="callerName">The name of the calling method.</param>
166
164
/// <param name="callerSourceFile">The name of the file where this is logged.</param>
167
165
/// <param name="callerLineNumber">The line in the file where this is logged.</param>
@@ -171,7 +169,6 @@ public void LogException(
171
169
[CallerMemberName]stringcallerName=null,
172
170
[CallerFilePath]stringcallerSourceFile=null,
173
171
[CallerLineNumber]intcallerLineNumber=-1)=>Log(PsesLogLevel.Error,$"{message}. Exception logged in {callerSourceFile} on line {callerLineNumber} in {callerName}:\n{exception}");
0 commit comments