diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-03-04 00:53:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 00:53:30 +0800 |
commit | 07c216d603d7b366c177295761280acc706a9382 (patch) | |
tree | 8e46ff5081d126f6e99d5849cb7dad7f64aefdbd /metrics/metrics.go | |
parent | 1a00e39539f2bd7f59430062faa42bbc28cb89d2 (diff) | |
parent | e7030c4bf59e8e148822c50ae1a5896c604c38c1 (diff) | |
download | dexon-07c216d603d7b366c177295761280acc706a9382.tar dexon-07c216d603d7b366c177295761280acc706a9382.tar.gz dexon-07c216d603d7b366c177295761280acc706a9382.tar.bz2 dexon-07c216d603d7b366c177295761280acc706a9382.tar.lz dexon-07c216d603d7b366c177295761280acc706a9382.tar.xz dexon-07c216d603d7b366c177295761280acc706a9382.tar.zst dexon-07c216d603d7b366c177295761280acc706a9382.zip |
Merge pull request #3739 from karalabe/logger-updates-4
all: update light logs (and a few others) to the new model
Diffstat (limited to 'metrics/metrics.go')
-rw-r--r-- | metrics/metrics.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/metrics/metrics.go b/metrics/metrics.go index fe400b2b9..9906bb8ad 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -18,7 +18,6 @@ package metrics import ( - "fmt" "os" "runtime" "strings" @@ -41,7 +40,7 @@ var Enabled = false func init() { for _, arg := range os.Args { if strings.TrimLeft(arg, "-") == MetricsEnabledFlag { - log.Info(fmt.Sprintf("Enabling metrics collection")) + log.Info("Enabling metrics collection") Enabled = true } } @@ -102,7 +101,7 @@ func CollectProcessMetrics(refresh time.Duration) { diskWrites = metrics.GetOrRegisterMeter("system/disk/writecount", metrics.DefaultRegistry) diskWriteBytes = metrics.GetOrRegisterMeter("system/disk/writedata", metrics.DefaultRegistry) } else { - log.Debug(fmt.Sprintf("failed to read disk metrics: %v", err)) + log.Debug("Failed to read disk metrics", "err", err) } // Iterate loading the different stats and updating the meters for i := 1; ; i++ { |