debug
This commit is contained in:
parent
9b8d877e81
commit
8c1f23d4a4
10
utils.go
10
utils.go
@ -9,14 +9,14 @@ import (
|
|||||||
func FormatBytes[T gmath.Integer](bytes T) string {
|
func FormatBytes[T gmath.Integer](bytes T) string {
|
||||||
value := float64(bytes)
|
value := float64(bytes)
|
||||||
if value/1000000000000 >= 1000000000000 {
|
if value/1000000000000 >= 1000000000000 {
|
||||||
return fmt.Sprint("%.02fT", value/1000000000000)
|
return fmt.Sprintf("%.02fT", value/1000000000000)
|
||||||
} else if value/1000000000 >= 1000000000 {
|
} else if value/1000000000 >= 1000000000 {
|
||||||
return fmt.Sprint("%.02fG", value/1000000000)
|
return fmt.Sprintf("%.02fG", value/1000000000)
|
||||||
} else if value/1000000 >= 1000000 {
|
} else if value/1000000 >= 1000000 {
|
||||||
return fmt.Sprint("%.02fM", value/1000000)
|
return fmt.Sprintf("%.02fM", value/1000000)
|
||||||
} else if value/1000 >= 1000 {
|
} else if value/1000 >= 1000 {
|
||||||
return fmt.Sprint("%.02fK", value/1000)
|
return fmt.Sprintf("%.02fK", value/1000)
|
||||||
} else {
|
} else {
|
||||||
return fmt.Sprint("%.02fB", value)
|
return fmt.Sprintf("%.02fB", value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user