mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 07:33:21 +00:00
10 lines
159 B
Go
10 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())
|
|
}
|