Skip to content

Commit d5a92a0

Browse files
committed
Add error logging
1 parent 53fb540 commit d5a92a0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

internal/exporter/exporter.go

+6
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ func (e *Exporter) speedtest(ch chan<- prometheus.Metric) bool {
114114
server.Country,
115115
fmt.Sprintf("%f", server.Distance),
116116
)
117+
} else {
118+
log.Errorf("failed to carry out ping test: %s", err.Error())
117119
}
118120

119121
if err := server.DownloadTest(false); err == nil {
@@ -130,6 +132,8 @@ func (e *Exporter) speedtest(ch chan<- prometheus.Metric) bool {
130132
server.Country,
131133
fmt.Sprintf("%f", server.Distance),
132134
)
135+
} else {
136+
log.Errorf("failed to carry out download test: %s", err.Error())
133137
}
134138

135139
if err := server.UploadTest(false); err == nil {
@@ -146,6 +150,8 @@ func (e *Exporter) speedtest(ch chan<- prometheus.Metric) bool {
146150
server.Country,
147151
fmt.Sprintf("%f", server.Distance),
148152
)
153+
} else {
154+
log.Errorf("failed to carry out upload test: %s", err.Error())
149155
}
150156

151157
return true

0 commit comments

Comments
 (0)