Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
make fmt (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiran RG authored May 24, 2017
1 parent 1807126 commit 8960e3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/storehost/storagemonitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ func (s *storageMonitor) checkStorage() {
} else if availablePcnt < warningThreshold {
s.logger.WithFields(bark.Fields{`filePath`: path, `availableMBs`: availableMBs, `totalMBs`: totalMBs, `availablePcnt`: availablePcnt}).Warn(`Available disk space lower than warning threshold`)
} else {
s.logger.WithFields(bark.Fields{`filePath`: path, `availableMBs`: availableMBs, `totalMBs`: totalMBs, `availablePcnt`: availablePcnt}).Info(`Monitoring disk space`) }
s.logger.WithFields(bark.Fields{`filePath`: path, `availableMBs`: availableMBs, `totalMBs`: totalMBs, `availablePcnt`: availablePcnt}).Info(`Monitoring disk space`)
}
}

func (s *storageMonitor) doHouseKeeping() {
Expand Down

0 comments on commit 8960e3b

Please sign in to comment.