Skip to content

Commit 61b9a21

Browse files
committed
check fix
Signed-off-by: Angelo De Caro <[email protected]>
1 parent db2c23f commit 61b9a21

File tree

1 file changed

+2
-1
lines changed
  • token/services/benchmark/cmd/memcheck

1 file changed

+2
-1
lines changed

token/services/benchmark/cmd/memcheck/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ package main
99
import (
1010
"flag"
1111
"fmt"
12+
"log"
1213
"os"
1314
"sort"
1415
"strings"
@@ -70,7 +71,7 @@ func NewFuncStat(name, file string, line int) *FuncStat {
7071
func printUnifiedReport(stats []*FuncStat, labels []*LabelStat, lines []*LineStat, stacks []StackRecord, totalAlloc, totalInUse int64) {
7172
w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
7273

73-
writef(w, "\n================ MEMORY ANALYZER ================\n")
74+
writef(w, "\n================ ULTIMATE GO MEMORY ANALYZER ================\n")
7475
writef(w, "Total Allocated: %s | Total In-Use: %s\n\n", formatBytes(totalAlloc), formatBytes(totalInUse))
7576

7677
detectAntiPatterns(stats, w)

0 commit comments

Comments
 (0)