From cd66819f6b5698cf504c54cdf329e8d972225abe Mon Sep 17 00:00:00 2001 From: Simon Howe Date: Thu, 4 Feb 2016 18:13:53 +0100 Subject: [PATCH] Removes console.log --- client/app/scripts/hoc/metric-feeder.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/app/scripts/hoc/metric-feeder.js b/client/app/scripts/hoc/metric-feeder.js index 5665f1303..306d92899 100644 --- a/client/app/scripts/hoc/metric-feeder.js +++ b/client/app/scripts/hoc/metric-feeder.js @@ -149,9 +149,6 @@ export default ComposedComponent => class extends React.Component { const lastValue = samples.length > 0 ? samples[samples.length - 1].value : null; const slidingWindow = {first: movingFirstDate, last: movingLastDate, max, samples, value: lastValue}; - if (this.props.label === 'CPU') { - console.log(lastValue, movingLastDate); - } return ; }