Skip to content

Latest commit

 

History

History
executable file
·
30 lines (18 loc) · 655 Bytes

B_Logf.md

File metadata and controls

executable file
·
30 lines (18 loc) · 655 Bytes

func (c *B) Logf(format string, args ...interface{})

参数列表

  • format 格式字符串
  • args 要输出的、用于描述错误的内容

返回值:

<无>

功能说明:

Logf方法根据给定的格式来格式化给定的参数,类似于Printf(),并在错误日志中记录文本。

代码实例:

package testing_demo

import (
	"testing"
)

func Benchmark(b *testing.B) {
	b.Logf("Log: %s\n", "LF")
}

运行方法:

将上面的实例代码保存在文件“$GOPATH/src/testing_demo/b_logf_test.go”中。用命令行进入文件所在目录并运行命令“go test -bench="." -v”。