csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Диагностические логи IDE. TOML: <c>[logging]</c> и вложенные секции.</summary> |
| 4 | public sealed class LoggingSettings |
| 5 | { |
| 6 | /// <summary>Intercom send / attach @ send. TOML: <c>[logging.intercom]</c>.</summary> |
| 7 | public IntercomLoggingSettings Intercom { get; set; } = new(); |
| 8 | } |
| 9 | |
| 10 | /// <summary>TOML: <c>[logging.intercom]</c>.</summary> |
| 11 | public sealed class IntercomLoggingSettings |
| 12 | { |
| 13 | /// <summary>Фазовый trace отправки в <c>{workspace}/.cascade-ide/intercom-send-trace.log</c>.</summary> |
| 14 | public bool SendTrace { get; set; } |
| 15 | } |
| 16 | |
View only · write via MCP/CIDE