mirror of
https://codeberg.org/scip/io-exporter.git
synced 2025-12-17 12:31:03 +01:00
catch err
This commit is contained in:
@@ -46,5 +46,7 @@ func Run() {
|
|||||||
|
|
||||||
slog.Info("start testing and serving metrics on localhost", "port", conf.Port)
|
slog.Info("start testing and serving metrics on localhost", "port", conf.Port)
|
||||||
slog.Info("test setup", "file", conf.File, "labels", strings.Join(conf.Label, ","))
|
slog.Info("test setup", "file", conf.File, "labels", strings.Join(conf.Label, ","))
|
||||||
http.ListenAndServe(fmt.Sprintf(":%d", conf.Port), nil)
|
if err := http.ListenAndServe(fmt.Sprintf(":%d", conf.Port), nil); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user