Windows-powershell / PowerShell-master /src /System.Management.Automation /utils /tracing /Tracing.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Text; | |
| namespace System.Management.Automation.Tracing | |
| { | |
| /// <summary> | |
| /// Tracer. | |
| /// </summary> | |
| public sealed partial class Tracer : EtwActivity | |
| { | |
| /// <summary> | |
| /// DebugMessage. | |
| /// </summary> | |
| [] | |
| public void DebugMessage(Exception exception) | |
| { | |
| if (exception == null) | |
| return; | |
| DebugMessage(GetExceptionString(exception)); | |
| } | |
| /// <summary> | |
| /// Converts exception object into a string. | |
| /// </summary> | |
| /// <param name="exception"></param> | |
| /// <returns></returns> | |
| public static string GetExceptionString(Exception exception) | |
| { | |
| if (exception == null) | |
| return string.Empty; | |
| StringBuilder sb = new StringBuilder(); | |
| while (WriteExceptionText(sb, exception)) | |
| { | |
| exception = exception.InnerException; | |
| } | |
| return sb.ToString(); | |
| } | |
| private static bool WriteExceptionText(StringBuilder sb, Exception e) | |
| { | |
| if (e == null) | |
| return false; | |
| sb.Append(e.GetType().Name); | |
| sb.Append(Environment.NewLine); | |
| sb.Append(e.Message); | |
| sb.Append(Environment.NewLine); | |
| return true; | |
| } | |
| } | |
| } | |