We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8256e2 commit d0f106eCopy full SHA for d0f106e
mylog/Log.go
@@ -264,7 +264,7 @@ func (o *object) printAndWrite() {
264
if isTermux() {
265
return
266
}
267
- indentTitle := o.getTimeNowString() + o.kind.String() + " " + o.textIndent(o.title, true)
+ indentTitle := o.getTimeNowString() + o.kind.String() + " " + o.textIndent(o.title, false)
268
if o.message == "" {
269
o.message = `""`
270
mylog/kind.go
@@ -21,7 +21,7 @@ const (
21
)
22
23
func (k kind) String() string {
24
- fnFmtLevel := func(l string) string { return fmt.Sprintf("%8s:", l) }
+ fnFmtLevel := func(l string) string { return fmt.Sprintf("%8s ->", l) }
25
switch k {
26
case hexKind:
27
return fnFmtLevel("Hex")
0 commit comments