19 lines
446 B
Go
19 lines
446 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/geziyor/geziyor/client"
|
|
"github.com/geziyor/geziyor/internal"
|
|
)
|
|
|
|
// LogStats logs responses
|
|
type LogStats struct {
|
|
LogDisabled bool
|
|
}
|
|
|
|
func (p *LogStats) ProcessResponse(r *client.Response) {
|
|
// LogDisabled check is not necessary, but done here for performance reasons
|
|
if !p.LogDisabled {
|
|
internal.Logger.Printf("Crawled: (%d) <%s %s>", r.StatusCode, r.Request.Method, r.Request.URL.String())
|
|
}
|
|
}
|