Remove debug output

This commit is contained in:
Holger Obermaier
2026-02-16 11:02:50 +01:00
parent 40fe94cabb
commit 47e68dfd2f

View File

@@ -71,7 +71,7 @@ func (m *BeegfsStorageCollector) Init(config json.RawMessage) error {
return err
}
}
println(m.config.Beegfs)
//create map with possible variables
m.matches = make(map[string]string)
for _, value := range storageStat_array {
@@ -179,7 +179,6 @@ func (m *BeegfsStorageCollector) Read(interval time.Duration, output chan lp.CCM
for scanner.Scan() {
readLine := scanner.Text()
//fmt.Println(readLine)
// Jump few lines, we only want the I/O stats from nodes
if !sumLine.MatchString(readLine) {
continue