diff --git a/src/Microsoft.Diagnostics.DebugServices.Implementation/SymbolService.cs b/src/Microsoft.Diagnostics.DebugServices.Implementation/SymbolService.cs index c22ad055c2..3f62861b23 100644 --- a/src/Microsoft.Diagnostics.DebugServices.Implementation/SymbolService.cs +++ b/src/Microsoft.Diagnostics.DebugServices.Implementation/SymbolService.cs @@ -917,15 +917,18 @@ private SymbolFile TryOpenReaderFromEmbeddedPdb(PEReader peReader, DebugDirector public override string ToString() { StringBuilder sb = new StringBuilder(); + + sb.AppendLine("Current symbol store settings:"); + ForEachSymbolStore((symbolStore) => { if (symbolStore is HttpSymbolStore httpSymbolStore) { - sb.AppendLine($"{httpSymbolStore} Timeout: {httpSymbolStore.Timeout.Minutes} RetryCount: {httpSymbolStore.RetryCount}"); + sb.AppendLine($"-> {httpSymbolStore} Timeout: {httpSymbolStore.Timeout.Minutes} RetryCount: {httpSymbolStore.RetryCount}"); } else { - sb.AppendLine(symbolStore.ToString()); + sb.AppendLine($"-> {symbolStore.ToString()}"); } }); return sb.ToString();