mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
10 lines
187 B
Go
10 lines
187 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{}) {
|
||
|
}
|