chore: add some logging for route queue processing

This commit is contained in:
Andrew Welker
2025-02-19 11:18:00 -06:00
parent 66cb592c70
commit a055d06bc6
2 changed files with 10 additions and 1 deletions

View File

@@ -38,5 +38,10 @@ namespace PepperDash.Essentials.Core
Debug.LogMessage(ex, "Exception handling cooldown", Destination);
}
}
public override string ToString()
{
return $"Route {Source?.Key ?? "No Source Device"}:{SourcePort?.Key ?? "auto"} to {Destination?.Key ?? "No Destination Device"}:{DestinationPort?.Key ?? "auto"}";
}
}
}