Skip to content

Commit

Permalink
函数Traceln多了format参数
Browse files Browse the repository at this point in the history
  • Loading branch information
eyjian committed Mar 25, 2020
1 parent b18ae04 commit 83b2408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simlog.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (this* SimLogger) Trace(a ...interface{}) {
}
}

func (this* SimLogger) Traceln(format string, a ...interface{}) {
func (this* SimLogger) Traceln(a ...interface{}) {
if this.enableTraceLog {
file, line := this.getCaller()
this.logln(LL_TRACE, file, line, a...)
Expand Down

0 comments on commit 83b2408

Please sign in to comment.