Skip to content

Commit 7357941

Browse files
committed
refactor: remove service event message truncation
Service event messages were truncated at 100 characters. Remove this truncation and let Rich table handle text wrapping naturally for full message visibility.
1 parent 0ce4084 commit 7357941

File tree

1 file changed

+0
-4
lines changed
  • src/lazy_ecs/features/service

1 file changed

+0
-4
lines changed

src/lazy_ecs/features/service/ui.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ def display_service_events(self, cluster_name: str, service_name: str) -> None:
107107
if len(service_display) > 18:
108108
service_display = "..." + service_display[-15:]
109109

110-
# Now we have more space for the actual message
111-
if len(message) > 100:
112-
message = message[:97] + "..."
113-
114110
table.add_row(time_str, type_display, service_display, message)
115111

116112
console.print(table)

0 commit comments

Comments
 (0)