Skip to content

Commit

Permalink
fix: realtime_printer
Browse files Browse the repository at this point in the history
  • Loading branch information
sjlleo committed Sep 20, 2022
1 parent 5b91fac commit 991f66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printer/realtime_printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func RealtimePrinter(res *trace.Result, ttl int) {
color.New(color.FgWhite, color.Bold).Sprintf("%s", res.Hops[ttl][i].Geo.City),
color.New(color.FgWhite, color.Bold).Sprintf("%s", res.Hops[ttl][i].Geo.District),
fmt.Sprintf("%-6s", res.Hops[ttl][i].Geo.Owner),
color.New(color.FgHiBlack, color.Bold).Sprintf("%-39s", res.Hops[ttl][0].Hostname),
color.New(color.FgHiBlack, color.Bold).Sprintf("%-39s", res.Hops[ttl][i].Hostname),
)
} else {
fmt.Fprintf(color.Output, " %s %s %s %s %s\n %s ",
Expand Down

0 comments on commit 991f66c

Please sign in to comment.