mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
473 B
30 lines
473 B
package mssql |
|
|
|
import ( |
|
"log" |
|
) |
|
|
|
type Logger interface { |
|
Printf(format string, v ...interface{}) |
|
Println(v ...interface{}) |
|
} |
|
|
|
type optionalLogger struct { |
|
logger Logger |
|
} |
|
|
|
func (o optionalLogger) Printf(format string, v ...interface{}) { |
|
if o.logger != nil { |
|
o.logger.Printf(format, v...) |
|
} else { |
|
log.Printf(format, v...) |
|
} |
|
} |
|
|
|
func (o optionalLogger) Println(v ...interface{}) { |
|
if o.logger != nil { |
|
o.logger.Println(v...) |
|
} else { |
|
log.Println(v...) |
|
} |
|
}
|
|
|