mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
12 lines
166 B
Go
12 lines
166 B
Go
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func RequestLogger(w http.ResponseWriter, r *http.Request) {
|
|
log.Printf("%v %v", r.Method, r.URL.String())
|
|
}
|