mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
11 lines
195 B
Go
11 lines
195 B
Go
package web
|
|
|
|
// nilLogger represents a logger that does not print anything
|
|
type nilLogger struct {
|
|
}
|
|
|
|
// Printf prints nothing
|
|
func (logger *nilLogger) Printf(string, ...interface{}) {
|
|
return
|
|
}
|