mirror of
https://github.com/restic/rest-server.git
synced 2026-04-05 09:42:08 -07:00
11 lines
159 B
Go
11 lines
159 B
Go
package handlers
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func RequestLogger(w http.ResponseWriter, r *http.Request) {
|
|
log.Printf("%v %v", r.Method, r.URL.String())
|
|
}
|