// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #if !UNIX using System.Text; namespace System.Management.Automation.Tracing { /// /// Tracer. /// public sealed partial class Tracer : EtwActivity { /// /// DebugMessage. /// [EtwEvent(0xc000)] public void DebugMessage(Exception exception) { if (exception == null) return; DebugMessage(GetExceptionString(exception)); } /// /// Converts exception object into a string. /// /// /// 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; } } } #endif